  /* Basic styles for banner and modal */
  #cookie-consent-root .cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  #cookie-consent-root .cookie-banner p {
    margin: 0 0 10px;
  }

  .cookie-buttons button {
    margin-right: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  #customize
  {
background:#fff !important;
color:#e20012 !important;
  }

  #customize:hover
  {
background:#fff !important;
color:#e20012 !important;
  }

  .cookie-primary {
    background-color: #e20012;
    color: white;
  }
  
  .cookie-primary:hover {
    background-color: #e20012;
    color: white;
  }


  .cookie-secondary {
    background-color: #555;
    color: white;
  }

  .cookie-secondary:hover {
    background-color: #555;
    color: white;
  }


  /* Modal styles */
  .cookie-modal {
    display: none;
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    border: 1px solid #ccc;
    padding: 20px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    box-sizing: border-box;
  
    /* Enable scroll if content overflows */
    max-height: 80vh;
    overflow-y: auto;
  }
  
  /* Optional: improve scrollbar appearance on Webkit browsers */
  .cookie-modal::-webkit-scrollbar {
    width: 8px;
  }
  
  .cookie-modal::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 480px) {
    .cookie-modal {
      top: 5%;
      padding: 15px;
      width: 95%;
      font-size: 14px;
    }
  }
  

  .cookie-modal.active {
    display: block;
  }

  .cookie-modal h2, .cookie-modal p, .cookie-modal label {
    margin-bottom: 10px;
  }

  .modal-buttons button {
    margin-right: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .cookie-details.hidden {
    display: none;
  }

  .cookie-header .toggle-details1 {
    font-size: 20px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    text-align: center !important;
    user-select: none !important;
    color: #000 !important;
  }
  