#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #004d40;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

#cookie-banner span {
  flex: 1 1 300px;
  line-height: 1.4;
}

#cookie-banner a {
  color: #80deea;
  text-decoration: underline;
}

#cookie-banner div {
  display: flex;
  gap: 0.5rem;
}

#cookie-banner button {
  background: #00bfa5;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#cookie-banner button:hover {
  background-color: #26c6da;
}