/* style.css */
/* ... (vorhandene Regeln) ... */

/* Material Design Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f5f5f5;
  padding: 15px 0;
  font-family: 'Roboto', Arial, sans-serif;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}

#cookieBanner span {
  font-size: 14px;
  color: #333;
}

#cookieBanner a {
  color: #03a9f4;
  text-decoration: none;
  font-weight: bold;
}

#cookieBanner .btn {
  /* Generelle Button-Styles von Materialize */
  border-radius: 4px;
}

#cookieBanner .btn.light-blue {
  background-color: #03a9f4 !important;
}

#cookieBanner .btn.red {
  background-color: #f44336 !important;
}

/* Mobile Optimierung für den Banner */
@media (max-width: 600px) {
  #cookieBanner .col.s12 {
    text-align: center !important;
  }
}