diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php
index 14c9d3d9b9..b9b1bb9822 100755
--- a/pandora_console/include/functions_reporting.php
+++ b/pandora_console/include/functions_reporting.php
@@ -12887,7 +12887,7 @@ function reporting_get_stats_servers()
if (isset($server_performance['total_web_modules'])) {
$tdata = [];
- $tdata[0] = html_print_image('images/world.png', true, ['title' => __('Web modules')]);
+ $tdata[0] = html_print_image('images/world.png', true, ['title' => __('Web modules'), 'class' => 'invert_filter']);
$tdata[1] = ''.format_numeric($server_performance['total_web_modules']).'';
$tdata[2] = ''.format_numeric($server_performance['web_modules_rate'], 2).'';
diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css
index 445131e60d..3a517e42dd 100644
--- a/pandora_console/include/styles/pandora_black.css
+++ b/pandora_console/include/styles/pandora_black.css
@@ -1108,6 +1108,15 @@ a.pandora_pagination,
border-bottom: 2px solid #707070;
}
-.info_table tr th {
- border-bottom: 1px solid #707070;
+.info_table tr th,
+.databox.data > tbody > tr > td {
+ border-bottom: 1px solid #707070 !important;
+}
+
+.databox.data > tbody > tr > td:first-child {
+ border-left: 1px solid #707070 !important;
+}
+
+.databox.data > tbody > tr > td:last-child {
+ border-right: 1px solid #707070 !important;
}