
/* --- Banner Styles --- */
.fqb-cookie-link, #fqb-manage-preferences {
  color: var(--fqb-link-color);
  cursor: pointer;
}

.fqb-cookie-bannerx {
  position: fixed;
  width: 100%;
  padding: 15px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  z-index: 20000000001;
  left: 0;
  bottom: 0;
  display: none;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}

.fqb-cookie-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--fqb-extra-color);
  text-align: left;
}

@media (max-width: 1023px) {
    .fqb-cookie-bannerx {
        flex-direction: column;
    }
    .fqb-cookie-text {
        text-align: center;
        margin-bottom: 15px;
    }
}


/* --- General Utility Styles --- */
.fqb-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20000000000;
    display: none;
}

.fqb-no-scroll {
  overflow: hidden;
}

.fqb-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.fqb-close:hover,
.fqb-close:focus {
  color: #fff;
  text-decoration: none;
}

/* --- DEFINITIVE FIX FOR BUTTON VISIBILITY --- */
.fqb-cookie-button {
  display: inline-block !important;
  visibility: visible !important;
  background-color: var(--fqb-btn-color) !important;
  border: none !important;
  color: #fff !important;
  padding: 10px 15px !important;
  border-radius: 4px !important;
  margin: 5px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  text-align: center !important;
  text-decoration: none !important;
}

.fqb-reject-all {
  background-color: #333333 !important;
}

.fqb-save-preferences {
  display: inline-block !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: none !important;
  padding: 10px 15px !important;
  margin: 5px !important;
  color: var(--fqb-link-color) !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font-size: 14px !important;
}

.cookie-banner-buttons {
    display: inline-block !important;
    vertical-align: middle !important;
    white-space: nowrap;
}

/* --- Modal & Preferences Form Styles --- */
.fqb-preferences-form {
  background: var(--fqb-bg-color);
}

.fqb-modal {
  display: none;
  position: fixed;
  z-index: 20000000002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7) !important;
  overflow-y: auto;
}

.fqb-modal-content {
  margin: 50px auto;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 20000000003;
  background: var(--fqb-bg-color) !important;
  color: var(--fqb-extra-color);
  box-sizing: border-box;
}

.fqb-modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.fqb-modal-content label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    cursor: pointer;
	color:#000;
}

.fqb-modal-content label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
}
