/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(26, 26, 26, 0.8);
  color: #edd;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  font-family: "Nunito Sans", sans-serif;
  max-width: 100%;
}

.cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner-text {
  font-size: 12px;
  margin-right: 20px;
  color: #edd;
  line-height: 1.5;
}

.cookie-banner-buttons {
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .cookie-banner-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-button {
    margin-left: 0;
    margin-top: 10px;
  }
}

.cookie-banner-button {
  background-color: #ff6b6b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  margin-left: 10px;
  font-size: 12px;
  transition: background-color 0.3s ease;
  font-family: "Baloo2", sans-serif;
}

.cookie-banner-button:hover {
  background-color: #ff4f4f;
}

.cookie-banner-button.secondary {
  background-color: #4f4f4f;
}

.cookie-banner-button.secondary:hover {
  background-color: #3f3f3f;
}

.cookie-banner a {
  color: #ff6b6b;
  text-decoration: underline;
}
