/* ===== Dark Mode Basis ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0f1a;   /* dunkler Hintergrund */
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* ===== Header ===== */
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Logo | Navi | Login */
    align-items: center;
    background-color: #111827;
    padding: 15px 30px;
    border-bottom: 2px solid #14a6ff;
  }
  
  /* Logo links */
  .brand {
    justify-self: start;
  }
  .brand img {
    height: 150px;
    display: block;
  }
  
  /* Navi mittig */
  .links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
  }
  .links a:hover {
    background-color: #14a6ff;
    color: #0a0f1a;
  }
  
  /* Login rechts */
  .login {
    justify-self: end;
  }
  .login a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
  }
  .login a:hover {
    background-color: #14a6ff;
    color: #0a0f1a;
  }
  
  /* ===== Hauptbereich ===== */
  .content {
    flex: 1; /* schiebt Footer nach unten */
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* alles in der Mitte */
  }
  
  /* ===== Footer ===== */
  .footer {
    background-color: #111827;
    color: #b0b0b0;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #14a6ff;
  }
  .footer-links {
    margin-bottom: 10px;
  }
  .footer-links a {
    color: #14a6ff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  

  .card {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #111827;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
  }