/* Overlay to lock the page */
#cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Modal styling */
  #cookie-modal {
    background: white;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    border-radius: 12px;
    font-family: Inter, sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  #cookie-modal h2 {
    margin-top: 0;
  }
  
  .cookie-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  #cookie-modal button {
    padding: 0.6rem 1.4rem;
    border: none;
    background-color: #0077cc;
    color: white;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  #cookie-modal a {
    color: #0077cc;
    text-decoration: underline;
    display: inline-block;
    margin-top: 0.5rem;
  }
  