/* Additional CSS styles for the GDPR banner (optional)
   Add this to your existing CSS or include it as a separate file */

/* Smooth animations for banner appearance */
@keyframes slideInUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  #cookie-consent-banner {
    animation: slideInUp 0.5s ease-out;
  }
  
  /* Custom switch styling (additional enhancements) */
  input[type="checkbox"] {
    cursor: pointer;
  }
  
  input[type="checkbox"]:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
  }
  
  /* Make sure the banner is readable on mobile */
  @media (max-width: 640px) {
    #cookie-consent-banner {
      max-height: 90vh;
      overflow-y: auto;
    }
  }
  
  /* For accessibility */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  /* Add this class to body when modal is open to prevent scrolling */
  .overflow-hidden {
    overflow: hidden;
  }

  .modal-bg {
    background-color: rgba(0, 0, 0, 0.5);

  }