:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --background-color: #ecf0f1;
    --text-color: #2c3e50;
    --link-color: #e74c3c;
    --table-header-bg: #34495e;
    --table-stripe1: #f9f9f9;
    --table-stripe2: #ffffff;
  }
  
  /* Base styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background: linear-gradient(180deg, #EBF5FF 0%, #FFFFFF 100%);
      min-height: 100vh;
      margin: 0;
      padding: 20px;
  }
  
  .MainTab {
      max-width: 1280px;
      margin: 0 auto;
      background: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 0.75rem;
      padding: 2rem;
  }
  
  .caption3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #111827;
      padding: 1rem 0;
  }
  
  .TabHeadWhite {
      background: #1E40AF;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 1rem;
      font-weight: 600;
  }
  
  .Line1Red, .Line1Blue {
      transition: all 0.2s;
      border-bottom: 1px solid #E5E7EB;
  }
  
  .Line1Red:nth-child(odd), .Line1Blue:nth-child(odd) {
      background: #F9FAFB;
  }
  
  .Line1Red:nth-child(even), .Line1Blue:nth-child(even) {
      background: #FFFFFF;
  }
  
  .Line1Red:hover, .Line1Blue:hover {
      background: #F3F4F6;
      transform: translateX(5px);
  }
  
  a {
      color: #2563EB;
      text-decoration: none;
      transition: all 0.2s;
      padding: 0.5rem 0.75rem;
      border-radius: 0.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  a:hover {
      background: #DBEAFE;
      color: #1E40AF;
  }
  
  table {
      border-collapse: separate;
      border-spacing: 0;
      width: 100%;
      margin: 1.5rem 0;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  td, th {
      padding: 1rem;
      text-align: left;
  }
  
  .CellLeft {
      padding: 1rem;
  }
  
  .LastLine {
      text-align: center;
      padding: 1.5rem;
      color: #6B7280;
      border-top: 1px solid #E5E7EB;
  }
  
  .Link {
      text-align: center;
      padding: 1.5rem 0;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .MainTab {
          padding: 1rem;
          margin: 0;
          width: 100%;
      }
      
      table {
          width: 100%;
          font-size: 0.9rem;
      }
      
      td, th {
          padding: 0.5rem;
      }
      
      .Link {
          flex-direction: column;
          gap: 0.5rem;
          padding: 1rem 0;
      }

      .TabHeadRed, .TabHeadWhite {
          font-size: 0.9rem;
      }

      body {
          padding: 10px;
      }
  }

  @media (max-width: 480px) {
      td, th {
          padding: 0.3rem;
          font-size: 0.8rem;
      }

      .caption3 {
          font-size: 1rem;
      }

      table table {
          font-size: 0.8rem;
      }

      img[src="../flags/DIE.GIF"] {
          width: 30px;
      }
  }
  
  /* Verbesserte Hover-Effekte */
  .Line1Red, .Line1Blue, .Line2Red, .Line2Blue {
      transition: all 0.3s ease;
      cursor: pointer;
  }
  
  .Line1Red:hover, .Line1Blue:hover, .Line2Red:hover, .Line2Blue:hover {
      background: #f0f9ff;
      transform: scale(1.02);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  /* Größere Touch-Bereiche für Mobile */
  @media (max-width: 768px) {
      .MainTab {
          padding: 0.5rem;
          width: 100%;
          max-width: 100%;
      }
      
      td, th {
          padding: 1rem !important;
          font-size: 1.1rem !important;
      }
      
      .caption3 {
          font-size: 1.4rem !important;
      }
      
      a {
          padding: 1rem !important;
          margin: 0.5rem 0;
          font-size: 1.2rem;
      }
  
      img[src="../flags/DIE.GIF"] {
          width: 50px !important;
          height: auto;
      }
  
      .Link {
          padding: 1.5rem;
      }
  
      .Link a {
          width: 100%;
          justify-content: center;
          background: #f8fafc;
          border: 1px solid #e2e8f0;
          border-radius: 8px;
      }
  }
  
  /* Extra große Geräte */
  @media (min-width: 1024px) {
      .MainTab {
          padding: 3rem;
      }
      
      td, th {
          padding: 1.2rem;
      }
  }
  
  /* Verbesserte Touch-Feedback */
  @media (hover: none) {
      .Line1Red:active, .Line1Blue:active, .Line2Red:active, .Line2Blue:active {
          background: #e0f2fe;
          transform: scale(0.98);
      }
      
      a:active {
          background: #bfdbfe;
          transform: scale(0.98);
      }
  }
  
  /* Header Image */
  img {
      transition: transform 0.3s ease;
      max-width: 100%;
      height: auto;
      border-radius: 0.5rem;
  }
  
  img:hover {
      transform: scale(1.02);
  }

  /* Spezifischer Stil für DIE.GIF */
  img[src="../flags/DIE.GIF"] {
      width: 40px;
      height: auto;
  }
  
  /* Modern Scrollbar */
  ::-webkit-scrollbar {
      width: 10px;
  }
  
  ::-webkit-scrollbar-track {
      background: #F3F4F6;
  }
  
  ::-webkit-scrollbar-thumb {
      background: #2563EB;
      border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background: #1E40AF;
  }
  
  /* Print Styles */
  @media print {
      body {
          background: white;
      }
      
      .MainTab {
          box-shadow: none;
      }
      
      a {
          color: #111827;
      }
  }
