/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);  /* Center horizontally */
    width: 90%;
    max-width: 800px;  /* Maximum width for responsiveness */
    background: #f4f4f4;
    color: #333;
    padding: 20px;
    display: none;  /* Initially hidden */
    z-index: 9999;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .cookie-consent-banner.show {
    display: block;  /* Show when consent is required */
  }
  
  .cookie-content h2 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }
  
  .cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 10px;
  }
  
  button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.3s ease;
  }
  
  .btn-primary {
    background: #007bff;
    color: white;
  }
  
  .btn-secondary {
    background: #ccc;
    color: #333;
  }
  
  button:hover {
    opacity: 0.8;
  }
  
  /* Optional: Add smooth transition for the banner's appearance */
  .cookie-consent-banner {
    transition: transform 0.3s ease-in-out;
  }
  
  .cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0); /* Smooth slide up effect */
  }
  
  /* For smaller screens */
  @media (max-width: 600px) {
    .cookie-consent-banner {
      width: 100%;
      padding: 15px;
    }
  
    .cookie-buttons {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    button {
      font-size: 14px;
      padding: 10px 20px;
    }
  }
  