
/* Cookie Consent Banner Animations */
@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slide-up 0.4s ease-out;
}

#cookie-consent-banner {
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

#cookie-settings-modal {
  backdrop-filter: blur(4px);
}
