/* Container für den Cookie-Hinweis */
#cookie-hint {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(46, 43, 34, 0.95); /* dunkles metallisch-braun */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
  font-size: 1rem;
  color: #E6F0F3; /* Frost White */
  font-family: Arial, sans-serif;
}

/* Box, die den Inhalt hält */
.cookie-hint-box {
  max-width: 900px;
  width: 90%;
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  animation: fadeIn 0.6s;
}

/* Linke Seite mit Icon und Überschrift */
.cookie-hint-box > div:first-child {
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #C8D6E5; /* Icy Silver */
  font-weight: 700;
  font-size: 1.2rem;
}

/* Textbereich und Buttons nebeneinander */
.cookie-hint-box > div:last-child {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}

/* Textabsatz */
.cookie-hint-box p {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
  color: #C8D6E5; /* Icy Silver */
}

/* Link im Text */
.cookie-hint-box p a {
  color: #A03B44; /* Icy Crimson Metallic */
  text-decoration: underline;
}

/* Container für Buttons */
.cookie-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  min-width: 140px;
}

/* Gemeinsame Button-Stile */
.cookie-btn {
  background: #2E2B22; /* dunkles metallisch-braun */
  color: #C8D6E5; /* Icy Silver */
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

/* Spezielle Farben für Ablehnen */
.cookie-btn.decline {
  background: #A03B44; /* Icy Crimson Metallic */
}

/* Hover-Effekte */
.cookie-btn.accept:hover,
.cookie-btn.settings:hover {
  background: #1E1B18; /* noch dunkleres metallisch-braun */
}

.cookie-btn.decline:hover {
  background: #7A2B34; /* dunkleres Icy Crimson Metallic */
}

/* Animation für Einblenden */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Responsive Anpassung für kleine Bildschirme */
@media (max-width: 700px) {
  .cookie-hint-box {
    flex-direction: column;
    gap: 0.7em;
    align-items: stretch;
  }
  .cookie-hint-box > div:first-child {
    min-width: 0;
    margin-bottom: 0.5em;
    justify-content: flex-start;
  }
  .cookie-btns {
    flex-direction: row;
    gap: 0.5em;
    justify-content: flex-end;
    min-width: 0;
  }
}