
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-in-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-btn {
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.cookie-btn-primary {
  background-color: #4f46e5;
  color: white;
}
.cookie-btn-primary:hover {
  background-color: #4338ca;
}
.cookie-btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
}
.cookie-btn-secondary:hover {
  background-color: #e5e7eb;
}
#cookie-preferences-modal {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
