/* SzámlaPáros — süti-hozzájárulás (cookie consent)
   A markupot a frontend/cookie-consent.js injektálja; a gombok Tabler-osztályokat kapnak,
   itt csak a saját elrendezés/tipográfia él. */

/* ---------- Alsó sáv ---------- */
.cc-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1035;               /* a sticky navbar (1030) fölött, a modal-backdrop (1050) alatt */
  width: min(400px, calc(100vw - 2.5rem));
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: .5rem;
  box-shadow: 0 12px 32px rgba(24, 36, 64, .18);
  padding: 1.25rem;
  /* Alapból rejtve: a cc-show osztályt a script teszi rá, ha nincs még döntés. */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.cc-banner.cc-show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.cc-banner-title {
  font-weight: 700;
  font-size: 1.0625rem;
  color: #1a2230;
  margin-bottom: .5rem;
}
.cc-banner-text {
  font-size: .875rem;
  line-height: 1.5;
  color: #4a5468;
  margin-bottom: 1rem;
}
.cc-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
/* Szűkebb vízszintes padding, hogy mindhárom gomb EGY sorba férjen a 400px-es kártyán. */
.cc-banner-actions .btn { font-size: .8125rem; padding: .5rem .65rem; }

@media (max-width: 575.98px) {
  .cc-banner { left: .75rem; right: .75rem; bottom: .75rem; width: auto; }
  .cc-banner-actions .btn { flex: 1 1 auto; }
}

/* ---------- Beállítás-modal ---------- */
.cc-modal .modal-body { padding-top: 1rem; }
.cc-modal .cc-intro {
  font-size: .875rem;
  line-height: 1.55;
  color: #4a5468;
  margin-bottom: .75rem;
}
.cc-modal .cc-more-btn {
  font-size: .875rem;
  font-weight: 500;
  white-space: nowrap;
}
.cc-modal .cc-more { margin-bottom: .75rem; }

.cc-modal .cc-cats { margin-top: .5rem; }
.cc-modal .cc-cat {
  border-top: 1px solid #eef1f6;
  padding: 1rem 0;
}
.cc-modal .cc-cat:last-child { padding-bottom: 0; }
.cc-modal .cc-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
}
.cc-modal .cc-cat-label {
  font-weight: 700;
  font-size: 1rem;
  color: #1a2230;
}
.cc-modal .cc-always {
  font-weight: 600;
  font-size: .875rem;
  color: var(--tblr-green, #2fb344);
  white-space: nowrap;
}
.cc-modal .cc-cat-desc {
  font-size: .875rem;
  line-height: 1.55;
  color: #4a5468;
  margin: 0;
}

/* A három gomb egyenlő szélességben tölti ki a láblécet (mint a sávnál). */
.cc-modal .cc-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.cc-modal .cc-modal-actions > .btn {
  flex: 1 1 0;
  margin: 0;
  font-size: .875rem;
}
