/* Cookie Banner CSS */
#privacy-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    z-index: 999999; /* Ensures it stays above all other site elements */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }
  
  /* Hidden state class handled by JavaScript */
  .cookie-banner-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  
  .cookie-banner-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .cookie-banner-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #2d3748;
    margin: 0;
  }
  
  .cookie-banner-text a {
    color: #0066cc; /* Matches your disclaimer blue accent theme */
    text-decoration: underline;
    font-weight: 500;
  }
  
  .cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }
  
  /* Button Foundations */
  .cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
  }
  
  .btn-primary {
    background-color: #0066cc;
    color: #ffffff;
  }
  
  .btn-primary:hover {
    background-color: #004499;
  }
  
  .btn-secondary {
    background-color: #e2e8f0;
    color: #4a5568;
  }
  
  .btn-secondary:hover {
    background-color: #cbd5e0;
  }
  
  /* Responsive optimization for tablet and mobile viewports */
  @media (max-width: 768px) {
    .cookie-banner-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
    
    .cookie-banner-actions {
      width: 100%;
    }
    
    .cookie-btn {
      flex: 1;
      text-align: center;
    }
  }
  