/* ── Consent Banner ─────────────────────────────────────────────── */
#btr-cmp-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10500;
  background: #1a1a2e;
  color: #e0e0e0;
  border-top: 1px solid #333;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .5);
  transform: translateY(0);
  transition: transform .35s ease;
}

#btr-cmp-banner.btr-cmp-hidden {
  transform: translateY(110%);
}

#btr-cmp-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
}

.btr-cmp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  flex-shrink: 0;
}

.btr-cmp-btn {
  padding: .4rem 1rem;
  border-radius: .375rem;
  border: none;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.btr-cmp-btn-primary {
  background: #4a90d9;
  color: #fff;
}
.btr-cmp-btn-primary:hover { background: #357abd; }

.btr-cmp-btn-secondary {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}
.btr-cmp-btn-secondary:hover { background: #2a2a3e; color: #fff; }

/* ── Preferences Modal ──────────────────────────────────────────── */
#btr-cmp-modal .modal-content {
  background: #1a1a2e;
  color: #e0e0e0;
  border: 1px solid #333;
}
#btr-cmp-modal .modal-header {
  border-bottom: 1px solid #333;
}
#btr-cmp-modal .modal-footer {
  border-top: 1px solid #333;
}
#btr-cmp-modal .btn-close {
  filter: invert(1) grayscale(1);
}

.btr-consent-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid #2a2a3e;
}
.btr-consent-row:last-child { border-bottom: none; }

.btr-consent-row-text { flex: 1; padding-right: 1.25rem; }
.btr-consent-row-text h6 { margin: 0 0 .2rem; font-size: .9rem; color: #fff; }
.btr-consent-row-text p  { margin: 0; font-size: .8rem; color: #aaa; line-height: 1.4; }

.btr-consent-badge {
  font-size: .75rem;
  padding: .2rem .55rem;
  background: #1e3a1e;
  color: #6abf6a;
  border-radius: .25rem;
  border: 1px solid #3a5a3a;
  white-space: nowrap;
  flex-shrink: 0;
}

#btr-cmp-modal .form-check-input:checked {
  background-color: #4a90d9;
  border-color: #4a90d9;
}
