/* =========================================================
   🍪 Cookie Banner Pro – Styles
   Light + Dark mode
   Author: JoomFlix
   Version: 2.2.0
   ========================================================= */
/* === Banner === */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.95);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

#cookie-banner .cookie-text {
    margin-bottom: 10px;
}

#cookie-banner .cookie-text a {
    color: #fff;
    text-decoration: underline;
}

#cookie-banner .cookie-buttons {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#cookie-banner .cookie-buttons button {
    padding: 5px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
}

#cookie-banner #accept-all {
    background: #1d6db3;
    color: #fff;
}

#cookie-banner #save-quick {
    background: #444;
    color: #fff;
}

#cookie-banner #details {
    background: #284876;
    color: #fff;
}

.powered-by-container {
    text-align: right;
    margin-top: -25px;
}

.powered-by {
    font-size: 10px;
}

.powered-by a {
    color: inherit; 
    text-decoration: none;
}

/* =========================================================
   🍪 Cookie Banner Pro – Modal Styles
   Light + Dark mode
   Author: JoomFlix
   Version: 2.2.0
   ========================================================= */

/* ---------- Overlay ---------- */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ---------- Modal Container ---------- */
.cookie-modal-content {
  background: #fff;
  max-width: 650px;
  width: 90%;
  border-radius: 14px;
  padding: 25px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  color: #333;
  position: relative;
  animation: modalFadeIn 0.25s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Headings ---------- */
.cookie-modal-content h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #0078D7;
  margin-top: 5px;
}
.cookie-modal-content h4 {
  margin: 0 0 5px;
  color: #444;
  font-size: 17px;
  font-weight: 600;
}

/* ---------- Paragraphs & Sections ---------- */
.cookie-modal-content section {
  margin: 20px 0;
  padding: 12px 15px;
  background: #f8f9fb;
  border-radius: 8px;
}
.cookie-modal-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

/* ---------- Labels ---------- */
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}
.cookie-modal-content label:hover {
  color: #0078D7;
}

/* ---------- Dividers ---------- */
.cookie-modal-content hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 12px 0;
}

/* ---------- Buttons ---------- */
.modal-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.modal-actions button {
  background: linear-gradient(90deg, #5091CD, #7AC143);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.modal-actions button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
.close-btn:hover {
  color: #000;
}

/* ---------- 🌙 Dark Mode ---------- */
@media (prefers-color-scheme: dark) {
  .cookie-modal-content {
    background: #1E1E1E;
    color: #e4e4e4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  .cookie-modal-content h3 {
    color: #4CB3FF;
  }
  .cookie-modal-content h4 {
    color: #fff;
  }
  .cookie-modal-content p {
    color: #ccc;
  }
  .cookie-modal-content section {
    background: #2A2A2A;
    border: 1px solid #333;
  }
  .cookie-modal-content label {
    color: #ddd;
  }
  .cookie-modal-content label:hover {
    color: #7AC143;
  }
  .close-btn {
    color: #bbb;
  }
  .close-btn:hover {
    color: #fff;
  }
}

.cookie-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: #1d6db3;
  text-decoration: underline;
}
.cookie-link:hover {
  color: #5091CD;
}
@media (prefers-color-scheme: dark) {
  .cookie-link { color: #4CB3FF; }
  .cookie-link:hover { color: #7AC143; }
}

