diff --git a/public_html/admin/index.php b/public_html/admin/index.php
index d73dcf88b3d5af4c47aea5c156cd21ef45bc0a2a..34e115699be8f49537276dad26131e63395e3532 100644
--- a/public_html/admin/index.php
+++ b/public_html/admin/index.php
@@ -54,7 +54,12 @@ function getId($sDomain){
 // ----------------------------------------------------------------------
 
 if (!$oR->isEnabled()){
-    $sHtml.='<div class="error">Admin is disabled.</div>';
+    $sHtml.='<div class="content">
+        <h3>Nothing to see here.</h3>
+        <div class="error">
+            The Admin interface is disabled.
+        </div>
+        </div>';
 } else {
 
 
diff --git a/public_html/admin/main.css b/public_html/admin/main.css
index 8e5e4daba279819babc928c1592e22cf51f32ee3..224eebe01ee21135fc46250bd46fceb738f863d4 100644
--- a/public_html/admin/main.css
+++ b/public_html/admin/main.css
@@ -12,8 +12,8 @@ footer{background:rgba(0,0,0,0.03); margin-top: 4em; text-align: right;padding:
 
 .content{margin: 0 1em;}
 .legend{background: #fff; padding: 1em;}
-.error{background: #fcc;}
-.warning{color:#651; background:#fec;}
+.error{background: #fcc; padding: 0.2em 1em;}
+.warning{color:#651; background:#fec; padding: 0.2em 1em;}
 
 .cfgtype-alias{color:#89a;}
 .http-301::after{color:#a55; content: ' (Moved Permanently)'}