/* ============================================
   ACL Languages – Cookie Consent Banner
   ============================================ */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: #1f2937;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.12);
}

.cookie-banner .btn {
  min-height: 44px;
}

.form-check.d-flex {
  gap: 1rem;
}

.form-check-input {
  margin-top: 0.25rem;
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #1a3a52;
  border-color: #1a3a52;
}

.form-check-input:focus {
  border-color: #1a3a52;
  box-shadow: 0 0 0 0.25rem rgba(26, 58, 82, 0.25);
}

#cookieCategoriesContainer .form-check {
  margin-bottom: 1rem;
  transition: background-color 0.2s ease;
}

#cookieCategoriesContainer .form-check:hover {
  background-color: #f8f9fa;
}

.modal-content {
  border-radius: 0.5rem;
}

.modal-header {
  border-bottom: 1px solid #dee2e6;
}

.modal-footer {
  border-top: 1px solid #dee2e6;
}

/* Ensure modal is visible */

.modal.show {
  display: flex !important;
}

.modal-backdrop.show {
  opacity: 0.5;
}

#cookieCategoriesContainer {
  max-height: 400px;
  overflow-y: auto;
}

