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

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

.cookie-content {
  background-color: white;
  max-width: 42rem;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-top: 4px solid #5D8AA8;
  padding: 1.5rem;
  animation: slideUp 0.3s ease-out;
}

@media (min-width: 768px) {
  .cookie-content {
    padding: 2rem;
  }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-details {
  display: none;
  margin-bottom: 1.5rem;
  background-color: rgba(230, 230, 250, 0.3);
  padding: 1rem;
  border: 1px solid rgba(93, 138, 168, 0.2);
}

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