.cookie-banner {
  position: fixed;
  bottom: 0px;
  background-color: #173954;
  color: white;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-content .cookie-title {
  font-weight: 600;
  font-size: 20px;
}

.cookie-content .cookie-text {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.cookie-actions .btn {
  padding: 10px 16px;
  cursor: pointer;
font-size: 0.875rem;
    border-radius: 10px;
        font-weight: 600;
}

.cookie-banner .btn {
  min-width: 140px; /* Adjust as needed */
  text-align: center;
}

.accept-all, .accept-all:hover {
  background-color: #C0F1F1;
  color: #173954;
  border: none;
}

.cooking-confirm, .cooking-confirm:hover {
  padding: 0.250rem 0.75rem;
  width: 100%;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 2rem;
  font-weight: 600;
  border: 0;
  background: #B2F1EE;
  color: var(--dblue);
}


.manage-preferences, .manage-preferences:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #c5f6fa;
}

.cookie-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 14px;
  cursor: pointer;
}

/* Privacy Modal */
.privacy-section .switch {
  position: relative;
  display: inline-block;
  width: 39px;
  height: 22px;
  border:0;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.privacy-section  .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #E9E9EA;
  transition: 0.4s;
  border-radius: 34px;
}
.privacy-section  .slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background-color: #173953;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #34C759;
}
input:checked + .slider:before {
  transform: translateX(18px);
}

.privacy-section-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 18px;
  transition: background 0.2s;
}

.privacy-section-box .section-header {
  cursor: pointer;
  user-select: none;
}

.privacy-section-box .toggle-icon {
  font-size: 1.3rem;
  width: 1.5rem;
  display: inline-block;
  text-align: center;
}

.privacy-section-box .font-weight-bold {
  font-weight: 600 !important;
}

.privacy-section-box .title-font-style {
  font-size: 15px !important;
}

.privacy-section-box .switch {
  margin-left: 12px;
}

.privacy-section-box .always-active-label {
  font-size: 1rem;
  color: #00A5AA;
}

.privacy-section-box .section-header[aria-expanded="true"] .toggle-icon::before {
  content: '-';
}
.privacy-section-box .section-header[aria-expanded="false"] .toggle-icon::before,
.privacy-section-box .section-header:not([aria-expanded]) .toggle-icon::before {
  content: '+';
}

#privacyModal .modal-content {
    border-radius: 10px!important;
    color: #173954;
}

#privacyModal .text-muted {
    color: #173954!important;
}

/* Desktop version */
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
  }

  .cookie-content {
    max-width: 65%;
  }

  .cookie-banner .btn {
    min-width: 170px; /* Adjust as needed */
    text-align: center;
    }

    .cooking-confirm {   
      width: 170px;
    }
    
    .cooking-confirm:hover {   
      width: 170px;
    }

    #privacyModal .close-modal {
      display: none;
    }
}