/* dark.css */
body {
    background-color: #121212;
    color: #e2e2e2;
  }
  
  /* Navbar und Hintergrund */
  .navbar, .bg-dark {
    background-color: #1e1e1e !important;
    color: #e2e2e2 !important;
  }
  .nav-link, .navbar-brand {
    color: #ddd !important;
  }
  .nav-link:hover, .navbar-brand:hover {
    color: #fff !important;
  }
  
  /* Tabellen */
  .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #2c2c2c !important;
    color:#fff;
  }
  .table thead th {
    background-color: #1e1e1e;
    color: #fff;
  }
  
  /* Buttons (angepasst für bessere Lesbarkeit) */
  .btn-primary {
    background-color: #374151;
    color: #e2e2e2;
    border-color: #4b5563;
  }
  .btn-primary:hover {
    background-color: #4b5563;
    color: #fff;
  }
  .btn-info {
    background-color: #3b82f6;
    color: #fff;
    border-color: #2563eb;
  }
  .btn-info:hover {
    background-color: #2563eb;
    color: #fff;
  }
  .btn-danger {
    background-color: #ef4444;
    color: #fff;
    border-color: #dc2626;
  }
  .btn-danger:hover {
    background-color: #dc2626;
    color: #fff;
  }
  .btn-secondary {
    background-color: #6b7280;
    color: #fff;
    border-color: #4b5563;
  }
  .btn-secondary:hover {
    background-color: #4b5563;
    color: #fff;
  }
  
  /* Outline-Light-Button für das Umschalten */
  .btn-outline-light {
    color: #e2e2e2 !important;
    border-color: #e2e2e2 !important;
  }
  .btn-outline-light:hover {
    background-color: #e2e2e2 !important;
    color: #1e1e1e !important;
  }
  
  /* Links */
  a {
    color: #93c5fd;
  }
  a:hover {
    color: #bfdbfe;
  }
  