/* ========================================================= -2026-06-12
   GRUNDLAYOUT
   ========================================================= */

 body {
        font-family: Verdana, sans-serif;
      }

 h1, h2, h3, h4, h5, h6 {
       font-family: Arial, sans-serif;
     }

echo "<div style='background:red;'>X</div>";

/* Utility */
.centered { text-align: center; }
.hidden { display: none; }
.halbe-zeile { margin-bottom: 0.5em; }
.row-highlight td { background-color: #002b80 !important; }

/* =========================================================
   TYPOGRAFIE
   ========================================================= */
p, div, address, blockquote, nobr, i,
ul, ol, li, input {
    font-size: 10pt;
    color: #333;
}

/* =========================================================
   ÜBERSCHRIFTEN
   ========================================================= */
h1 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 100;
    color: #000080;
   }

h2 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;          /* oben UND unten */
    color: #0000ff;
   }

h3 {
    font-size: 12px;
    color: #000080;
    margin: 0;          /* wichtig! */
   }

h4 {
    font-size: 18px;
    font-weight: 400;
    color: #ffff00;
    margin: 0;
   }

h5 {
    font-size: 18px;
    font-weight: 400;
    color: #aa0000;
    margin: 0;
   }

h6 {
    font-size: 16px;
    font-weight: 600;
    color: #ff6666;
    margin-top: 10px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* =========================================================
   LINKS
   ========================================================= */
a {
    font-size: 12pt;
    color: #000080;
    text-decoration: none;
}

a:hover  { color: #EE0000; }
a:active { color: #0000EE; background-color: #FFFF99; }
a:visited { color: #0b0080; }
a:focus { outline: 2px solid #ffcc00; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
    background: #002b80;
    padding: 10px;
    text-align: center;
}

.navbar a {
    color: #fff;
    padding: 8px 14px;
    margin: 0 5px;
    background: #0044cc;
    border-radius: 4px;
    display: inline-block;
}

.navbar a:hover {
    background: #0066ff;
}

/* =========================================================
   POPUP
   ========================================================= */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 600px) {
    body { padding: 5px; }
    th, td { font-size: 18px; padding: 10px; }
    table { width: 100%; max-width: 100%; }
}


 
 /* ---------------------------------------------------------
    aktiven Link markieren alle anderen zurücksetzen
	--------------------------------------------------------- */
 .activeLink {
    background-color: #ffeb3b !important;
    color: red !important;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
  }

