/* Cookie Consent Banner Styles */
/* Matches your existing Gambling Harms Severity Project theme */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff9ef;
  border-top: 3px solid #698F3F;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1.5rem;
  font-family: "Bitter", serif;
  /* Ensure banner appears above fixed header */
  margin-top: 110px;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text p {
  margin: 0;
  color: #252323;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-consent-text p:first-child {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: "Hanken", sans-serif;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cookie-accept {
  background-color: #698F3F;
  color: #E6EFE9;
}

.cookie-accept:hover {
  background-color: #5a7835;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(105, 143, 63, 0.3);
}

.cookie-decline {
  background-color: transparent;
  color: #252323;
  border: 2px solid #252323;
}

.cookie-decline:hover {
  background-color: #252323;
  color: #fff9ef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  #cookie-consent-banner {
    padding: 1rem;
  }
}