/* Cookie Consent CSS */
#cookie-consent-modal {
  display: none; /* Hidden by default */
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 640px) {
  #cookie-consent-modal {
    align-items: center;
  }
}

#cookie-consent-modal.visible {
  display: flex;
}

.cookie-content {
  background-color: white;
  width: 100%;
  max-width: 42rem; /* max-w-2xl */
  border-radius: 0.75rem; /* rounded-xl */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.cookie-details {
  background-color: rgba(230, 244, 241, 0.5); /* bg-ice/50 */
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 193, 181, 0.2);
  margin-bottom: 1.5rem;
  display: none;
}

.cookie-details.visible {
  display: block;
}

.toggle-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: #1A3A5F;
}