/* ============================================================
   DateTime Manager – Publikus oldal stílusok
   ============================================================ */

/* Általános */
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

/* ── Foglalás varázsló – haladás jelző ── */
.booking-progress {
  padding: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  margin: 0 auto .25rem;
  background: #dee2e6;
  color: #6c757d;
  transition: background .25s, color .25s;
}
.booking-step.active .step-circle {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(13,110,253,.25);
}
.booking-step.done .step-circle {
  background: #198754;
  color: #fff;
}
.step-line {
  height: 3px;
  background: #dee2e6;
  border-radius: 2px;
  margin-top: -20px;
}
.booking-step.done + .step-line,
.booking-step.active + .step-line {
  background: #0d6efd;
}

/* Időpont gombok */
.slot-btn {
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: .9rem;
  padding: .45rem .25rem;
  transition: all .15s;
}
.slot-btn.active,
.slot-btn:active {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

/* Szervezet és rendelés választó kártyák */
.form-check.border:hover {
  border-color: #0d6efd !important;
  background: #f0f5ff;
  cursor: pointer;
}

/* Visszaigazoló oldal */
.confirm-icon {
  font-size: 4rem;
  color: #198754;
}

/* Navbar logó */
.navbar-brand img {
  filter: brightness(0) invert(1);
}

/* Kártya hover effekt (főoldal szervezetek) */
.card.border-0:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1) !important;
  transition: all .2s ease;
}

/* ── Admin kiegészítő stílusok ── */
.status-badge {
  font-size: .8rem;
}
.small-box .icon {
  font-size: 50px;
  top: 10px;
}

/* Betöltési animáció AJAX-hoz */
.spinner-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
