/* Allgemeine Elemente */
body {
    margin: 0;
    font-family: Tahoma, sans-serif;
    background-color: #000;
    color: #ccc;
  }
  
  a {
    color: #00ccff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Blinken */
  .blinken {
    animation: blinken 1s steps(2, start) infinite;
    color: #ff0000;
  }
  
  /* Container-Layout */
  .container {
    display: flex;
    min-height: 100vh;
  }
  
  /* Geld (hervorgehobene Preise oder Beträge) */
  .geld {
    color: #ffd700;
    font-weight: bold;
  }
  
  /* Gelber Text */
  .gelb {
    color: #ffd700;
    font-weight: bold;
  }
  
  /* Hauptinhalt */
  .content {
    flex: 1;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
  }
  
  .content h1,
  .content h2 {
    color: #00ff99;
  }
  
  /* Letzte Aktualisierung */
  .last-update {
    font-size: 0.9em;
    color: #888;
    text-align: right;
    margin-top: -1.5em;
    margin-bottom: 2em;
  }
  
  /* Logo */
  .logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px #00ff99);
    margin-bottom: 2rem;
  }
  
  /* Schatten-Effekt */
  .schatten {
    text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
    color: #00ff99;
  }
  
  /* Seitenleiste (linkes Menü) */
  .sidebar {
    width: 15%;
    background-color: #000;
    padding: 1rem;
    box-sizing: border-box;
    border-right: 1px solid #333;
  }
  
  .sidebar h3 {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 1em;
  }
  
  .sidebar li {
    margin: 0;
    padding: 0.1em 0;
    line-height: 1.2em;
  }
  
  .sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  /* Trennlinie im Menü */
  .trennlinie {
    height: 0.8em;
    line-height: 0;
    margin: 0;
    padding: 0;
  }
  
  /* Blink-Animation */
  @keyframes blinken {
    to {
      visibility: hidden;
    }
  }

  .logo img[src*="blarks_de.png"] {
    filter: none !important;
  }

  .no-shadow {
    filter: none !important;
  }

  .glow {
    filter: drop-shadow(0 0 10px #00ff99);
  }

  #system-info {
    font-size: 0.9em;
  }
  