/* Modal like Cookiebot/Usercentrics (simple) */
.scc { position: fixed; inset: 0; z-index: 999999; }
.scc__overlay {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,.75);
}
.scc__card {
  width: 100%; max-width: 860px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.scc__body { padding: 22px; color: #212529; }
.scc__title { margin: 0 0 10px 0; font-size: 20px; }
.scc__desc { margin: 0 0 16px 0; color: #343a40; }

.scc__cats { border-top: 1px solid #e9ecef; padding-top: 14px; margin-top: 10px; }
.scc__row {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f5;
}
.scc__row input { margin-top: 3px; }
.scc__rowText { line-height: 1.25; }
.scc__muted { color: #6c757d; font-size: 13px; }

.scc__footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
  padding-top: 14px;
}
.scc__link { color: #6c757d; text-decoration: underline; font-size: 13px; }

.scc__actions { display: flex; gap: 8px; }
.scc__btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
}
.scc__btn--secondary { background: #f1f3f5; color: #212529; }
.scc__btn--primary { background: #198754; color: #fff; }

@media (max-width: 576px) {
  .scc__actions { width: 100%; flex-direction: column; }
  .scc__btn { width: 100%; }
}