#cookie-overlay {
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
  }
  
  #cookie-banner-modal {
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 95vw;
    width: clamp(300px, 50vw, 900px); /* min 300px, preferred 50vw, max 420px */
    background: #ffffff;
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 2rem;
    transition: all 0.3s ease;
  }
  
  
  .cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .cookie-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }
  
  .cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
  }
  
  .btn-accept {
    background-color: #198754;
    color: white;
  }
  
  .btn-accept:hover {
    background-color: #157347;
  }
  
  .btn-decline {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
  }
  
  .btn-decline:hover {
    background-color: #dc3545;
    color: white;
  }