/* style-cookies.css */

/* Cookie banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    font-size: 0.9rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
  }
  
  .cookie-banner-inner {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .cookie-banner-inner a {
    color: var(--orange-color);
    text-decoration: underline;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  /* Cookie modal */
  #cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
  }
  
  #cookie-settings-modal .modal-content {
    background: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  
  #cookie-settings-modal h2 {
    margin-top: 0;
  }
  
  .btn {
    padding: 0.4rem 1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-weight: 500;
  }
  
  .cookie-btn-orange {
    background-color: var(--orange-color);
    color: #000;
  }
  
  .cookie-btn-light {
    background-color: #898181d9;
    border: 1px solid #ccc;
    color: #333;
  }