@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --mc-ink: #0f172a;
  --mc-ink-2: #1e293b;
  --mc-sand: #f6f1e7;
  --mc-sand-2: #efe7d7;
  --mc-gold: #c5a869;
  --mc-gold-dark: #a5864b;
  --mc-teal: #0f766e;
  --mc-rose: #be123c;
  --mc-border: rgba(15, 23, 42, 0.08);
  --mc-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

body.mc-2026 {
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at top left, #fdf8ee 0%, #f6f1e7 40%, #eef2ff 100%);
  color: var(--mc-ink);
  min-height: 100vh;
}

body.mc-2026 h1,
body.mc-2026 h2,
body.mc-2026 h3,
body.mc-2026 .mc-title {
  font-family: 'Fraunces', serif;
  letter-spacing: 0.2px;
}

.contents {
  display: contents;
}

/* Hiányzó Tailwind osztályok pótlása (mert az output.css nem tartalmazza) */
.grid {
  display: grid;
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

body.mc-2026 .mc-app-shell {
  max-width: 1280px;
  margin: 0 auto;
}

body.mc-2026 .mc-card {
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: 20px;
  box-shadow: var(--mc-shadow);
}

body.mc-2026 .mc-input,
body.mc-2026 input,
body.mc-2026 select,
body.mc-2026 textarea {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--mc-ink);
  padding: 0.65rem 0.85rem;
}

body.mc-2026 .btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

body.mc-2026 .btn i {
  margin-right: 8px;
}

body.mc-2026 .btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
}

body.mc-2026 .btn-white {
  background: #fff;
  color: var(--mc-ink);
  border-color: rgba(15, 23, 42, 0.08);
}

body.mc-2026 .btn-white:hover {
  border-color: var(--mc-gold);
  color: var(--mc-gold-dark);
}

body.mc-2026 .btn-gold {
  background: linear-gradient(135deg, var(--mc-gold), #e5c88a);
  color: #1f1a0c;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(197, 168, 105, 0.3);
}

body.mc-2026 .btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(197, 168, 105, 0.35);
}

body.mc-2026 .mc-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--mc-border);
}

body.mc-2026 .mc-topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

body.mc-2026 .mc-topbar__row--nav {
  padding-top: 0;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  flex-wrap: wrap;
}

body.mc-2026 .mc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.mc-2026 .mc-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

body.mc-2026 .mc-filter-pill input {
  accent-color: var(--mc-gold);
}

body.mc-2026 .mc-today-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

body.mc-2026 .mc-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

body.mc-2026 .mc-brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--mc-ink);
  color: var(--mc-gold);
  display: grid;
  place-items: center;
  font-weight: 800;
}

body.mc-2026 .mc-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

body.mc-2026 .mc-status__value {
  font-weight: 700;
  color: var(--mc-ink);
}

body.mc-2026 .mc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.mc-2026 .mc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.mc-2026 .mc-badge {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--mc-rose);
  color: #fff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

body.mc-2026 .mc-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 90vw);
  background: #fff;
  border-left: 1px solid var(--mc-border);
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 70;
}

body.mc-2026 .mc-drawer.open {
  transform: translateX(0);
}

body.mc-2026 .mc-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 60;
}

body.mc-2026 .mc-empty {
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(15, 23, 42, 0.15);
  background: rgba(15, 23, 42, 0.03);
  font-size: 13px;
  color: #64748b;
}

body.mc-2026 .mc-drawer__header {
  padding: 20px;
  border-bottom: 1px solid var(--mc-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.mc-2026 .mc-drawer__list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.mc-2026 .mc-login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  padding: 40px;
}

body.mc-2026 .mc-login__panel {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--mc-shadow);
  border: 1px solid var(--mc-border);
}

/* ── Finance hero — eltávolítva, status-strip váltotta fel ── */
body.mc-2026 .finance-hero { display: none; }

/* ── Finance státusz csík (hero helyett) ── */
body.mc-2026 .finance-status-strip {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
body.mc-2026 .finance-status-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  flex: 1;
  min-width: 0;
}
body.mc-2026 .finance-status-strip__item i {
  font-size: 14px;
  color: #94a3b8;
  flex-shrink: 0;
}
body.mc-2026 .finance-status-strip__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  font-weight: 700;
  white-space: nowrap;
}
body.mc-2026 .finance-status-strip__value {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-left: auto;
  white-space: nowrap;
}
body.mc-2026 .finance-status-strip__value--ok { color: #059669; }
body.mc-2026 .finance-status-strip__value--warn { color: #d97706; }
body.mc-2026 .finance-status-strip__value--danger { color: #dc2626; }
body.mc-2026 .finance-status-strip__divider {
  width: 1px;
  background: rgba(15, 23, 42, 0.07);
  margin: 8px 0;
  flex-shrink: 0;
}

body.mc-2026 .finance-hero__pattern {
  position: absolute;
  right: -40px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 105, 0.25), transparent 70%);
  filter: blur(1px);
}

body.mc-2026 .finance-hero__content {
  display: flex;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 2;
}

body.mc-2026 .finance-hero__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #0f172a;
  color: var(--mc-gold);
  display: grid;
  place-items: center;
  font-size: 24px;
}

body.mc-2026 .finance-hero__title {
  font-size: 28px;
  font-weight: 700;
}

body.mc-2026 .finance-hero__subtitle {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}

body.mc-2026 .finance-hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

body.mc-2026 .mc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.mc-2026 .mc-chip i {
  font-size: 10px;
}

body.mc-2026 .finance-hero__stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  position: relative;
  z-index: 2;
}

body.mc-2026 .mc-stat {
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 6px;
}

body.mc-2026 .mc-stat__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
  color: var(--mc-ink-2);
}

body.mc-2026 .mc-stat__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

body.mc-2026 .mc-stat__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--mc-ink);
}

body.mc-2026 .mc-kpi {
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

body.mc-2026 .mc-kpi__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(15, 23, 42, 0.08);
}

body.mc-2026 .mc-kpi__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

body.mc-2026 .mc-kpi__value {
  font-size: 26px;
  font-weight: 700;
}

body.mc-2026 .mc-kpi--green .mc-kpi__icon {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
}

body.mc-2026 .mc-kpi--red .mc-kpi__icon {
  background: rgba(244, 63, 94, 0.15);
  color: #be123c;
}

body.mc-2026 .mc-kpi--blue .mc-kpi__icon {
  background: rgba(59, 130, 246, 0.15);
  color: #1d4ed8;
}

/* ── Finance navigáció ── */

body.mc-2026 .finance-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

body.mc-2026 .finance-nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 4px 4px;
}

body.mc-2026 .finance-nav-group + .finance-nav-group {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 8px;
  margin-top: 2px;
}

body.mc-2026 .finance-nav-group__label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5e1;
  padding: 0 6px 2px;
}

body.mc-2026 .finance-nav-group__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 4px;
}

body.mc-2026 .finance-module .nav-tile {
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  padding: 10px 10px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.15s ease;
  color: #475569;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

body.mc-2026 .finance-module .nav-tile i {
  font-size: 16px;
  opacity: 0.7;
}

body.mc-2026 .finance-module .nav-tile span {
  font-size: 11px;
  line-height: 1.2;
}

body.mc-2026 .finance-module .nav-tile:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #1e293b;
  border-color: rgba(15, 23, 42, 0.08);
}

body.mc-2026 .finance-module .nav-tile:hover i {
  opacity: 1;
}

body.mc-2026 .finance-module .nav-tile.active {
  background: linear-gradient(135deg, var(--mc-gold), #f3d8a2);
  color: #1f1a0c;
  box-shadow: 0 4px 12px rgba(197, 168, 105, 0.3);
  border-color: transparent;
}

body.mc-2026 .finance-module .nav-tile.active i {
  opacity: 1;
}

/* ── Pénzügy szekció fejléc (közös) ── */

body.mc-2026 .finance-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #1e293b;
  margin-bottom: 14px;
}

body.mc-2026 .finance-section-header i {
  color: #f59e0b;
  font-size: 15px;
}

body.mc-2026 .finance-section-header .finance-section-action {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: color 0.15s;
}

body.mc-2026 .finance-section-header .finance-section-action:hover {
  color: #1e293b;
}

/* ── Pénzügy adatsor ── */

body.mc-2026 .finance-data-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 0.15s;
}

body.mc-2026 .finance-data-row:hover {
  background: rgba(15, 23, 42, 0.02);
}

body.mc-2026 .finance-data-row--warn {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.25);
}

body.mc-2026 .finance-data-row--danger {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.25);
}

body.mc-2026 .finance-data-row--success {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.25);
}

body.mc-2026 .finance-data-row--purple {
  background: rgba(139, 92, 246, 0.05);
  border-color: rgba(139, 92, 246, 0.25);
}

/* ── Státusz badge ── */

body.mc-2026 .finance-status-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

body.mc-2026 .finance-status-badge--warn {
  background: rgba(245, 158, 11, 0.2);
  color: #92400e;
}

body.mc-2026 .finance-status-badge--danger {
  background: rgba(239, 68, 68, 0.2);
  color: #991b1b;
}

body.mc-2026 .finance-status-badge--success {
  background: rgba(16, 185, 129, 0.2);
  color: #065f46;
}

body.mc-2026 .finance-status-badge--purple {
  background: rgba(139, 92, 246, 0.2);
  color: #5b21b6;
}

body.mc-2026 .finance-status-badge--neutral {
  background: rgba(15, 23, 42, 0.08);
  color: #475569;
}

/* ── Metrika kártya (kis KPI) ── */

body.mc-2026 .finance-metric-card {
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

body.mc-2026 .finance-metric-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 6px;
}

body.mc-2026 .finance-metric-card__value {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

body.mc-2026 .finance-metric-card__delta {
  font-size: 11px;
  margin-top: 3px;
}

body.mc-2026 .finance-metric-card__delta--up {
  color: #059669;
}

body.mc-2026 .finance-metric-card__delta--down {
  color: #dc2626;
}

/* ── Kattintható teendő sor ── */

body.mc-2026 .finance-data-row--clickable {
  cursor: pointer;
}

body.mc-2026 .finance-data-row--clickable:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.15);
}

@media (max-width: 640px) {
  body.mc-2026 .finance-nav-group__tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

body.mc-2026 .mc-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

body.mc-2026 .mc-week-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

body.mc-2026 .mc-summary-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

body.mc-2026 .mc-summary-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
  color: var(--mc-ink-2);
}

body.mc-2026 .mc-summary-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

body.mc-2026 .mc-summary-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--mc-ink);
}

body.mc-2026 .mc-finance .day-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

body.mc-2026 .mc-finance .card-header-dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

body.mc-2026 .mc-finance .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(15, 23, 42, 0.02);
}

body.mc-2026 .mc-finance .input-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

body.mc-2026 .mc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

body.mc-2026 .mc-tag--ok {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
}

body.mc-2026 .mc-tag--danger {
  background: rgba(244, 63, 94, 0.15);
  color: #be123c;
}

body.mc-2026 .mc-tag--warn {
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
}

body.mc-2026 .mc-tag--info {
  background: rgba(59, 130, 246, 0.15);
  color: #1d4ed8;
}

body.mc-2026 .mc-calendar-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

body.mc-2026 .schedule-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

body.mc-2026 .schedule-nav-btn:hover {
  border-color: var(--mc-gold);
  color: var(--mc-gold-dark);
}

body.mc-2026 .schedule-view-toggle {
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: #475569;
  background: #fff;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.2s ease;
}

body.mc-2026 .schedule-view-toggle:last-child {
  border-right: none;
}

body.mc-2026 .schedule-view-toggle.active {
  background: linear-gradient(135deg, var(--mc-gold), #e8cf8e);
  color: #1f1a0c;
}

body.mc-2026 .mc-calendar-grid,
body.mc-2026 .museum-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: stretch;
}

body.mc-2026 .museum-tile,
body.mc-2026 .mc-calendar-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow-y: auto;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Havi nézetben kompaktabb kártyák */
body.mc-2026 .mc-calendar-grid--month .museum-tile {
  min-height: 200px;
  border-radius: 14px;
}

body.mc-2026 .mc-calendar-grid--month .museum-tile-header {
  padding: 10px 14px;
}

body.mc-2026 .mc-calendar-grid--month .museum-tile-content {
  padding: 8px 12px;
}

body.mc-2026 .mc-calendar-grid--month .museum-tile-footer {
  padding: 6px 12px;
}

body.mc-2026 .museum-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 36px rgba(15, 23, 42, 0.12);
}

body.mc-2026 .museum-tile-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 18px 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.mc-2026 .museum-tile-header--alert {
  background: linear-gradient(135deg, #7f1d1d 0%, #450a0a 100%);
}

body.mc-2026 .museum-tile-header--today {
  background: linear-gradient(135deg, var(--mc-gold) 0%, #8e7d56 100%);
}

body.mc-2026 .museum-tile-header .day-num {
  font-size: 2.2rem;
  font-weight: 800;
}

body.mc-2026 .museum-tile-header .day-name,
body.mc-2026 .museum-tile-header .month-name {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  opacity: 0.85;
}

body.mc-2026 .museum-tile-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

body.mc-2026 .museum-tile-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.mc-2026 .museum-tile-badge--warning {
  background: rgba(245, 158, 11, 0.2);
  color: #fde68a;
}

body.mc-2026 .museum-tile-content {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(to bottom, #fff 0%, #f8fafc 100%);
  overflow-y: auto;
  min-height: 0;
}

body.mc-2026 .museum-tile-section-title {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94a3b8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.mc-2026 .museum-tile-item-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.mc-2026 .museum-tile-section--finance .mc-tag {
  font-size: 0.55rem;
  letter-spacing: 0.06em;
}

body.mc-2026 .museum-tile-section--finance .btn {
  padding: 4px 10px;
  border-radius: 999px;
}

body.mc-2026 .mc-calendar-scroll {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding: 0 0 10px 0;
}

body.mc-2026 .museum-tile-footer {
  padding: 14px 20px;
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

@media (min-width: 640px) {

  body.mc-2026 .mc-calendar-grid,
  body.mc-2026 .museum-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {

  body.mc-2026 .mc-calendar-grid,
  body.mc-2026 .museum-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {

  body.mc-2026 .mc-calendar-grid,
  body.mc-2026 .museum-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

body.mc-2026 .mc-alert-stack {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

body.mc-2026 .mc-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

body.mc-2026 .mc-alert__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.08);
  color: var(--mc-ink-2);
}

body.mc-2026 .mc-alert__title {
  font-weight: 700;
  font-size: 14px;
}

body.mc-2026 .mc-alert__text {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

body.mc-2026 .mc-alert--danger {
  border-color: rgba(244, 63, 94, 0.25);
  background: rgba(255, 241, 242, 0.6);
}

body.mc-2026 .mc-alert--danger .mc-alert__icon {
  background: rgba(244, 63, 94, 0.15);
  color: #be123c;
}

body.mc-2026 .mc-alert--warn {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(255, 247, 237, 0.7);
}

body.mc-2026 .mc-alert--warn .mc-alert__icon {
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
}

body.mc-2026 .mc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

body.mc-2026 .mc-table thead th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.mc-2026 .mc-table tbody td {
  padding: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

body.mc-2026 .mc-table tbody tr:hover {
  background: rgba(15, 23, 42, 0.03);
}

@media (max-width: 900px) {
  body.mc-2026 .finance-status-strip {
    flex-direction: column;
  }
  body.mc-2026 .finance-status-strip__divider {
    width: auto;
    height: 1px;
    margin: 0 16px;
  }

  body.mc-2026 .mc-week-nav {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  body.mc-2026 .mc-login {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  body.mc-2026 .mc-topbar__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== 2026 Unified Redesign v2 ===== */
:root {
  --mc-ink: #112038;
  --mc-ink-2: #1d2e4b;
  --mc-sand: #f7f4ee;
  --mc-sand-2: #efe8d8;
  --mc-gold: #c8a768;
  --mc-gold-dark: #9c7c3f;
  --mc-teal: #0f766e;
  --mc-rose: #be123c;
  --mc-border: rgba(17, 32, 56, 0.12);
  --mc-shadow: 0 24px 60px rgba(17, 32, 56, 0.1);
}

@keyframes mcFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mcGlowFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.55;
  }

  50% {
    transform: translate3d(0, -16px, 0);
    opacity: 0.85;
  }
}

body.mc-2026 {
  margin: 0;
  color: var(--mc-ink);
  background:
    radial-gradient(65rem 35rem at -12% -12%, rgba(200, 167, 104, 0.2), transparent 62%),
    radial-gradient(48rem 28rem at 100% 0%, rgba(15, 118, 110, 0.14), transparent 60%),
    linear-gradient(180deg, #fffdf8 0%, #f7f4ee 44%, #eef2f7 100%);
  overflow-x: hidden;
}

body.mc-2026::before,
body.mc-2026::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
  animation: mcGlowFloat 14s ease-in-out infinite;
}

body.mc-2026::before {
  right: -140px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 167, 104, 0.33), transparent 72%);
}

body.mc-2026::after {
  left: -140px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.19), transparent 72%);
  animation-delay: 1.2s;
}

body.mc-2026 #app-view,
body.mc-2026 #login-view,
body.mc-2026 main {
  position: relative;
  z-index: 1;
}

body.mc-2026 #login-view {
  min-height: 100vh;
  background: transparent !important;
  padding: clamp(1rem, 3vw, 2.25rem);
}

body.mc-2026 #login-view>div {
  width: min(520px, 100%);
}

body.mc-2026 #login-view .text-center h1 {
  color: var(--mc-ink);
  letter-spacing: 0.01em;
}

body.mc-2026 #login-view .bg-white {
  border: 1px solid var(--mc-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 249, 245, 0.97));
  box-shadow: 0 28px 60px rgba(17, 32, 56, 0.14);
  animation: mcFadeUp 0.42s ease both;
}

body.mc-2026 .mc-login {
  min-height: 100vh;
  align-items: stretch;
  gap: clamp(1rem, 2.3vw, 1.8rem);
  padding: clamp(1rem, 3vw, 2.5rem);
}

body.mc-2026 .mc-login__panel {
  border: 1px solid var(--mc-border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 238, 0.98));
  box-shadow: 0 30px 65px rgba(17, 32, 56, 0.13);
  padding: clamp(1.1rem, 2.5vw, 2rem);
  animation: mcFadeUp 0.45s ease both;
}

body.mc-2026 .mc-topbar {
  top: 10px;
  margin: 0 auto;
  width: min(1440px, calc(100vw - 1rem));
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(17, 32, 56, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 250, 246, 0.8));
  backdrop-filter: blur(18px);
}

body.mc-2026 .mc-topbar__row {
  gap: 0.85rem;
  padding: 0.95rem 1.2rem;
  width: 100%;
  animation: mcFadeUp 0.36s ease both;
}

body.mc-2026 .mc-topbar__row--nav {
  gap: 0.75rem;
  border-top: 1px solid rgba(17, 32, 56, 0.09);
  padding-top: 0.75rem;
  padding-bottom: 0.95rem;
}

body.mc-2026 .mc-brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0f172a, #1d2e4b);
  box-shadow: 0 10px 26px rgba(17, 32, 56, 0.34);
  letter-spacing: 0.04em;
}

body.mc-2026 .mc-status,
body.mc-2026 .mc-pill {
  border: 1px solid rgba(17, 32, 56, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 248, 252, 0.96));
  box-shadow: 0 10px 24px rgba(17, 32, 56, 0.08);
  color: #42546e;
}

body.mc-2026 .mc-status {
  font-size: 11px;
  letter-spacing: 0.13em;
}

body.mc-2026 .mc-nav {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  scrollbar-width: thin;
}

body.mc-2026 .mc-nav::-webkit-scrollbar {
  height: 7px;
}

body.mc-2026 .mc-nav::-webkit-scrollbar-thumb {
  background: rgba(17, 32, 56, 0.22);
  border-radius: 999px;
}

body.mc-2026 .mc-nav .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  border-radius: 12px;
  padding: 0.56rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 32, 56, 0.11);
  color: #334155;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 8px 18px rgba(17, 32, 56, 0.08);
}

body.mc-2026 .mc-nav .btn i {
  margin-right: 6px;
}

body.mc-2026 .mc-nav .btn.is-active,
body.mc-2026 .mc-nav .btn:only-child {
  border-color: rgba(200, 167, 104, 0.56);
  color: #2f250f;
  background: linear-gradient(135deg, rgba(200, 167, 104, 0.98), rgba(230, 207, 157, 0.98));
  box-shadow: 0 14px 24px rgba(200, 167, 104, 0.3);
}

body.mc-2026 .mc-nav .btn:hover {
  border-color: rgba(17, 32, 56, 0.28);
  transform: translateY(-1px);
}

body.mc-2026 .btn {
  border-radius: 14px;
  padding: 0.62rem 1.12rem;
}

body.mc-2026 .btn-gold {
  color: #2f250f;
  background: linear-gradient(135deg, #d1b27a, #f0d7a7);
  box-shadow: 0 14px 26px rgba(200, 167, 104, 0.32);
}

body.mc-2026 .btn-white {
  background: linear-gradient(180deg, #fff, #f8fafc);
  border-color: rgba(17, 32, 56, 0.14);
}

body.mc-2026 #logout-btn {
  border-radius: 12px;
  white-space: nowrap;
}

body.mc-2026 input:focus,
body.mc-2026 select:focus,
body.mc-2026 textarea:focus,
body.mc-2026 button:focus-visible {
  outline: none;
  border-color: rgba(200, 167, 104, 0.74);
  box-shadow: 0 0 0 3px rgba(200, 167, 104, 0.21);
}

body.mc-2026 #content-container {
  max-width: min(1440px, calc(100vw - 1rem));
  margin: 1rem auto 0;
  padding: clamp(1rem, 2.2vw, 1.75rem) !important;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(246, 248, 252, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 44px rgba(17, 32, 56, 0.11);
  animation: mcFadeUp 0.35s ease both;
}

body.mc-2026 #content-container .bg-white,
body.mc-2026 #content-container .mc-card {
  border-color: rgba(17, 32, 56, 0.11);
  box-shadow: 0 12px 24px rgba(17, 32, 56, 0.08);
}

body.mc-2026 .mc-drawer {
  border-left: 1px solid rgba(17, 32, 56, 0.13);
  background: linear-gradient(180deg, #ffffff, #f7fafc);
}

body.mc-2026 .mc-drawer__header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96));
}

body.mc-2026 .notification {
  transform: translateY(12px);
  opacity: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(17, 32, 56, 0.28);
  transition: all 0.25s ease;
}

body.mc-2026 .notification.show {
  transform: translateY(0);
  opacity: 1;
}

body.mc-2026 .notification.success {
  background: linear-gradient(135deg, #047857, #059669);
}

body.mc-2026 .notification.error {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
}

body.mc-2026 .notification.info {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

body.mc-2026 .dev-shell {
  width: min(980px, calc(100vw - 1.2rem));
  margin: 1.2rem auto;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 248, 252, 0.87));
  border: 1px solid rgba(17, 32, 56, 0.12);
  box-shadow: 0 22px 46px rgba(17, 32, 56, 0.13);
}

body.mc-2026 .dev-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.95rem;
}

body.mc-2026 .dev-title {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-family: 'Fraunces', serif;
  margin: 0;
}

body.mc-2026 .dev-sub {
  margin: 0.35rem 0 0;
  color: #64748b;
}

body.mc-2026 .dev-role {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(17, 32, 56, 0.06);
  border: 1px solid rgba(17, 32, 56, 0.1);
  font-size: 0.78rem;
}

body.mc-2026 .dev-tabs {
  display: flex;
  gap: 0.62rem;
  flex-wrap: wrap;
  margin-bottom: 0.92rem;
}

body.mc-2026 .dev-tab {
  text-decoration: none;
  border-radius: 12px;
  padding: 0.54rem 0.85rem;
  border: 1px solid rgba(17, 32, 56, 0.13);
  color: #1e293b;
  background: linear-gradient(180deg, #fff, #f8fafc);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.mc-2026 .dev-tab:hover {
  border-color: rgba(200, 167, 104, 0.55);
  color: #2f250f;
  background: linear-gradient(135deg, #d5bb89, #f2ddad);
}

body.mc-2026 .dev-card {
  border-radius: 18px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(17, 32, 56, 0.1);
  background: rgba(255, 255, 255, 0.87);
}

body.mc-2026 .dev-card h2 {
  margin-top: 0;
  font-family: 'Fraunces', serif;
}

@media (max-width: 1200px) {
  body.mc-2026 .mc-topbar__row {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  body.mc-2026 .mc-topbar {
    top: 0.5rem;
    width: calc(100vw - 0.6rem);
    border-radius: 18px;
  }

  body.mc-2026 .mc-status {
    width: 100%;
    justify-content: space-between;
  }

  body.mc-2026 #content-container {
    width: calc(100vw - 0.6rem);
    margin-top: 0.7rem;
    border-radius: 18px;
  }
}

@media (max-width: 680px) {
  body.mc-2026 .mc-login {
    padding: 0.85rem;
  }

  body.mc-2026 .mc-login__panel,
  body.mc-2026 #login-view .bg-white {
    border-radius: 18px;
    padding: 1rem;
  }

  body.mc-2026 .mc-topbar__row {
    padding: 0.8rem;
  }

  body.mc-2026 .mc-brand__logo {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {

  body.mc-2026 *,
  body.mc-2026 *::before,
  body.mc-2026 *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   iPortál — Top Header Layout (sidebar nélkül)
   ═══════════════════════════════════════════════════════════════ */

/* Header konténer */
body.mc-2026 .ip-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0f172a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* Felső sor: brand + óra + gombok + user */
body.mc-2026 .ip-header__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.mc-2026 .ip-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

body.mc-2026 .ip-header__title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
}

body.mc-2026 .ip-header__status {
  margin-right: 8px;
}

body.mc-2026 .ip-header__clock {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

body.mc-2026 .ip-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

body.mc-2026 .ip-header__action-btn {
  position: relative;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s;
}

body.mc-2026 .ip-header__action-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #f1f5f9;
}

body.mc-2026 .ip-header__action-btn--logout {
  color: #ef4444;
  opacity: 0.7;
}

body.mc-2026 .ip-header__action-btn--logout:hover {
  background: rgba(239,68,68,0.12);
  color: #ef4444;
  opacity: 1;
}

body.mc-2026 .ip-header__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

body.mc-2026 .ip-header__user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border-left: 1px solid rgba(255,255,255,0.08);
  margin-left: 4px;
}

body.mc-2026 .ip-header__avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--mc-gold);
  color: #1f1a0c;
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

body.mc-2026 .ip-header__user-name {
  font-size: 12px;
  font-weight: 700;
  color: #f1f5f9;
}

body.mc-2026 .ip-header__user-role {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-left: -4px;
}

/* Navigáció — horizontális tab bar */
body.mc-2026 .ip-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

body.mc-2026 .ip-nav::-webkit-scrollbar {
  display: none;
}

body.mc-2026 .ip-nav__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: none;
  background: none;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}

body.mc-2026 .ip-nav__btn i {
  font-size: 14px;
}

body.mc-2026 .ip-nav__btn:hover {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
}

body.mc-2026 .ip-nav__btn.is-active {
  background: rgba(197,168,105,0.18);
  color: #e5c88a;
  font-weight: 700;
}

body.mc-2026 .ip-nav__btn--napnyitas {
  background: rgba(234,179,8,0.15) !important;
  color: #fbbf24 !important;
  font-weight: 700 !important;
  border: 1px solid rgba(234,179,8,0.3) !important;
  animation: ip-napnyitas-pulse 2s ease-in-out infinite;
}

@keyframes ip-napnyitas-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,179,8,0); }
  50% { box-shadow: 0 0 0 4px rgba(234,179,8,0.15); }
}

body.mc-2026 .ip-nav__separator {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
  flex-shrink: 0;
}

/* Fő tartalom */
body.mc-2026 .ip-main {
  padding: 20px 24px;
  min-height: calc(100vh - 100px);
  max-width: 1600px;
  margin: 0 auto;
}

/* Mobilon user név elrejtése */
@media (max-width: 768px) {
  body.mc-2026 .ip-header__user-name,
  body.mc-2026 .ip-header__user-role {
    display: none;
  }

  body.mc-2026 .ip-nav__btn span {
    display: none;
  }

  body.mc-2026 .ip-nav__btn {
    padding: 8px 12px;
  }

  body.mc-2026 .ip-main {
    padding: 12px 12px;
  }
}

/* -------------------------------------------------------------------------- */
/* Olvashatosag + desktop optimalizalas (eredeti dizajn megtartasa mellett)   */
/* -------------------------------------------------------------------------- */

body.mc-2026 {
  color: #1f2937;
}

body.mc-2026 .text-gray-400 {
  color: #6b7280 !important;
}

body.mc-2026 .text-gray-500 {
  color: #4b5563 !important;
}

body.mc-2026 .text-gray-600 {
  color: #374151 !important;
}

body.mc-2026 .text-gray-700 {
  color: #1f2937 !important;
}

body.mc-2026 .text-gray-800,
body.mc-2026 .text-gray-900 {
  color: #111827 !important;
}

body.mc-2026 input::placeholder,
body.mc-2026 textarea::placeholder {
  color: #6b7280;
}

body.mc-2026 .mc-topbar .text-gray-400 {
  color: #cbd5e1 !important;
}

@media (min-width: 1025px) {
  body.mc-2026 .mc-topbar__row {
    gap: 14px;
  }

  body.mc-2026 .mc-nav {
    gap: 8px;
  }

  body.mc-2026 .mc-nav .btn {
    min-height: 38px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  body.mc-2026 #content-container {
    padding: 1.5rem 1.75rem !important;
  }
}

@media (min-width: 1280px) {
  body.mc-2026 .mc-app-shell {
    max-width: 1480px;
  }

  body.mc-2026 #content-container {
    padding: 1.75rem 2rem !important;
  }

  body.mc-2026 #content-container .grid {
    align-items: start;
  }

  body.mc-2026 #content-container section.bg-white,
  body.mc-2026 #content-container article.bg-white,
  body.mc-2026 #content-container .mc-card {
    height: 100%;
  }

  body.mc-2026 #content-container .overflow-auto,
  body.mc-2026 #content-container .overflow-x-auto {
    overflow: auto;
  }

  body.mc-2026 #content-container table {
    font-size: 0.95rem;
  }
}

@media (min-width: 1536px) {
  body.mc-2026 .mc-app-shell {
    max-width: 1640px;
  }
}

/* ══════════════════════════════════════════════════
   SIDEBAR NAVIGÁCIÓ — Admin 2026 redesign
   ══════════════════════════════════════════════════ */

:root {
  --sidebar-w: 200px;
  --sidebar-w-collapsed: 200px;
  --sidebar-bg: #0f172a;
  --sidebar-text: #94a3b8;
  --sidebar-text-hover: #f1f5f9;
  --sidebar-active-bg: rgba(197, 168, 105, 0.15);
  --sidebar-active-text: #e5c88a;
  --sidebar-group-text: #475569;
  --sidebar-border: rgba(255, 255, 255, 0.06);
}

/* Sidebar kontéjner */
body.mc-2026 .mc-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  z-index: 55;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-right: 1px solid var(--sidebar-border);
}

body.mc-2026 .mc-sidebar.collapsed {
  width: var(--sidebar-w-collapsed);
}

/* Header */
body.mc-2026 .mc-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px 12px;
  border-bottom: 1px solid var(--sidebar-border);
  flex-shrink: 0;
}

body.mc-2026 .mc-sidebar__header .mc-brand {
  gap: 10px;
}

body.mc-2026 .mc-sidebar__header .mc-brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 13px;
  flex-shrink: 0;
}

body.mc-2026 .mc-sidebar__title {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
  white-space: nowrap;
  transition: opacity 0.2s;
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__title,
body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__group-label,
body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__item span:not(.mc-sidebar__badge),
body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__user-info,
body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__settings {
  opacity: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

body.mc-2026 .mc-sidebar__collapse {
  background: none;
  border: none;
  color: var(--sidebar-text);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

body.mc-2026 .mc-sidebar__collapse:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sidebar-text-hover);
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__collapse i {
  transform: rotate(180deg);
}

/* Navigáció */
body.mc-2026 .mc-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}

body.mc-2026 .mc-sidebar__nav::-webkit-scrollbar {
  width: 4px;
}

body.mc-2026 .mc-sidebar__nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Csoport */
body.mc-2026 .mc-sidebar__group {
  margin-bottom: 10px;
}

body.mc-2026 .mc-sidebar__group-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sidebar-group-text);
  padding: 4px 12px 4px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__group-label {
  font-size: 0;
  padding: 6px 0;
  border-bottom: 1px solid var(--sidebar-border);
  margin: 0 8px;
}

/* Menü elem */
body.mc-2026 .mc-sidebar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: none;
  color: var(--sidebar-text);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  position: relative;
  text-align: left;
  margin-bottom: 1px;
}

body.mc-2026 .mc-sidebar__item i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 0;
}

body.mc-2026 .mc-sidebar__item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sidebar-text-hover);
}

body.mc-2026 .mc-sidebar__item.is-active {
  background: var(--sidebar-active-bg);
  color: var(--sidebar-active-text);
  font-weight: 700;
}

body.mc-2026 .mc-sidebar__item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  border-radius: 0 3px 3px 0;
  background: var(--mc-gold);
}

/* Badge (üzenetek, figyelmeztetések) */
body.mc-2026 .mc-sidebar__badge {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: var(--mc-rose);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  flex-shrink: 0;
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  margin-left: 0;
  min-width: 16px;
  height: 16px;
  font-size: 8px;
  padding: 0 4px;
  width: auto;
  opacity: 1;
  pointer-events: none;
}

/* Logout gomb */
body.mc-2026 .mc-sidebar__item--logout {
  color: #ef4444;
  opacity: 0.6;
  font-size: 12px;
  padding: 8px 14px;
}

body.mc-2026 .mc-sidebar__item--logout:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  opacity: 1;
}

/* Footer */
body.mc-2026 .mc-sidebar__footer {
  border-top: 1px solid var(--sidebar-border);
  padding: 14px 12px;
  flex-shrink: 0;
}

body.mc-2026 .mc-sidebar__user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 6px;
  border-radius: 10px;
  transition: background 0.15s;
}

body.mc-2026 .mc-sidebar__user:hover {
  background: rgba(255, 255, 255, 0.04);
}

body.mc-2026 .mc-sidebar__avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--mc-gold);
  color: #1f1a0c;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

body.mc-2026 .mc-sidebar__user-info {
  flex: 1;
  min-width: 0;
  transition: opacity 0.2s;
}

body.mc-2026 .mc-sidebar__user-name {
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.mc-2026 .mc-sidebar__user-role {
  font-size: 10px;
  font-weight: 700;
  color: var(--sidebar-group-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}

body.mc-2026 .mc-sidebar__settings {
  background: none;
  border: none;
  color: var(--sidebar-text);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

body.mc-2026 .mc-sidebar__settings:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sidebar-text-hover);
}

/* Mobile topbar */
body.mc-2026 .mc-mobile-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mc-border);
  padding: 10px 16px;
  align-items: center;
  gap: 12px;
}

body.mc-2026 .mc-mobile-topbar__menu {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--mc-ink);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

body.mc-2026 .mc-mobile-topbar__menu:hover {
  background: rgba(0, 0, 0, 0.04);
}

body.mc-2026 .mc-brand__logo--sm {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 11px;
}

/* Sidebar backdrop (mobile) */
body.mc-2026 .mc-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 54;
}

/* Fő tartalom — desktop eltolás */
body.mc-2026 .mc-main {
  margin-left: var(--sidebar-w);
  padding: 24px 28px;
  max-width: 1400px;
  min-height: 100vh;
  transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.mc-2026 .mc-sidebar.collapsed ~ .mc-main {
  margin-left: var(--sidebar-w-collapsed);
}

/* Mobile: sidebar rejtve, topbar látható */
@media (max-width: 1023px) {
  body.mc-2026 .mc-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.25s;
    width: var(--sidebar-w) !important;
  }

  body.mc-2026 .mc-sidebar.mobile-open {
    transform: translateX(0);
  }

  body.mc-2026 .mc-mobile-topbar {
    display: flex;
  }

  body.mc-2026 .mc-main {
    margin-left: 0;
    padding: 16px;
  }
}

/* Collapsed mód — ikonok középre */
body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__item {
  justify-content: center;
  padding: 10px 0;
  position: relative;
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__item i {
  margin: 0;
  font-size: 17px;
}

/* Collapsed tooltip — hover-re felirat */
body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: #1e293b;
  color: #f1f5f9;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__item:hover::after {
  opacity: 1;
}

/* Ha nincs data-tooltip, ne mutasson üres tooltipet */
body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__item:not([data-tooltip])::after {
  display: none;
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__user {
  justify-content: center;
  padding: 8px 0;
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__header {
  justify-content: center;
  padding: 20px 8px 16px;
}

body.mc-2026 .mc-sidebar.collapsed .mc-sidebar__header .mc-brand {
  justify-content: center;
}

/* ── Dashboard figyelmeztető sáv ── */

body.mc-2026 .dash-alert-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Figyelmeztető kártyák (dashboard) ── */

body.mc-2026 .dash-alerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

body.mc-2026 .dash-alert-card {
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 4px solid transparent;
}

body.mc-2026 .dash-alert-card--clickable {
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

body.mc-2026 .dash-alert-card--clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

body.mc-2026 .dash-alert-card__akcio-wrap {
  padding-left: 0;
  margin-top: 8px;
}

body.mc-2026 .dash-alert-card__chevron {
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.2s ease;
  opacity: 0.5;
}

body.mc-2026 .dash-alert-card__chevron--open {
  transform: rotate(180deg);
}

body.mc-2026 .dash-alert-card__toggle {
  cursor: pointer;
}

body.mc-2026 .dash-alert-card__akcio-btn {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}

body.mc-2026 .dash-alert-card__akcio-btn:hover {
  transform: scale(1.03);
}

body.mc-2026 .dash-alert-card--danger .dash-alert-card__akcio-btn {
  background: rgba(239, 68, 68, 0.15);
  color: #991b1b;
}

body.mc-2026 .dash-alert-card--warn .dash-alert-card__akcio-btn {
  background: rgba(245, 158, 11, 0.15);
  color: #92400e;
}

body.mc-2026 .dash-alert-card--info .dash-alert-card__akcio-btn {
  background: rgba(59, 130, 246, 0.15);
  color: #1e40af;
}

/* ── Figyelmeztető kártya — részletes lista ── */

body.mc-2026 .dash-alert-lista {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

body.mc-2026 .dash-alert-lista__sor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

body.mc-2026 .dash-alert-lista__nap {
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
  min-width: 90px;
}

body.mc-2026 .dash-alert-lista__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

body.mc-2026 .dash-alert-lista__dolgozok {
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.mc-2026 .dash-alert-lista__statusz {
  font-size: 10px;
  color: #9ca3af;
}

body.mc-2026 .dash-alert-lista__leiras {
  font-size: 11px;
  color: #6b7280;
  font-style: italic;
}

body.mc-2026 .dash-approve-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1.5px solid #22c55e;
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
}
body.mc-2026 .dash-approve-btn:hover {
  background: #22c55e;
  color: #fff;
}
body.mc-2026 .dash-approve-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

body.mc-2026 .dash-approve-all-btn {
  background: #22c55e !important;
  color: #fff !important;
  border: none !important;
}

body.mc-2026 .dash-alert-lista__osszeg {
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
}

/* ── Foglalási hónap toggle chevron ── */

body.mc-2026 .dash-booking-chevron {
  transition: transform 0.2s ease;
}

body.mc-2026 .dash-booking-chevron--open {
  transform: rotate(90deg);
}

body.mc-2026 .dash-alert-card--danger {
  background: rgba(239, 68, 68, 0.08);
  border-left-color: #ef4444;
}

body.mc-2026 .dash-alert-card--warn {
  background: rgba(245, 158, 11, 0.08);
  border-left-color: #f59e0b;
}

body.mc-2026 .dash-alert-card--info {
  background: rgba(59, 130, 246, 0.08);
  border-left-color: #3b82f6;
}

body.mc-2026 .dash-alert-card--success {
  background: rgba(16, 185, 129, 0.08);
  border-left-color: #10b981;
}

body.mc-2026 .dash-alert-card__fejlec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
}

body.mc-2026 .dash-alert-card--danger .dash-alert-card__fejlec { color: #991b1b; }
body.mc-2026 .dash-alert-card--warn .dash-alert-card__fejlec { color: #92400e; }
body.mc-2026 .dash-alert-card--info .dash-alert-card__fejlec { color: #1e40af; }
body.mc-2026 .dash-alert-card--success .dash-alert-card__fejlec { color: #065f46; }

body.mc-2026 .dash-alert-card__ikon {
  font-size: 16px;
  flex-shrink: 0;
}

body.mc-2026 .dash-alert-card__reszlet {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
  padding-left: 24px;
}

body.mc-2026 .dash-alert-card__magyarazat {
  font-size: 11px;
  color: #64748b;
  line-height: 1.5;
  padding-left: 24px;
}

body.mc-2026 .dash-alert-card__teendo {
  font-size: 11px;
  color: #334155;
  line-height: 1.5;
  padding-left: 24px;
  padding-top: 2px;
}

body.mc-2026 .dash-alert-card__akcio {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}

body.mc-2026 .dash-alert-card--danger .dash-alert-card__akcio {
  background: rgba(239, 68, 68, 0.15);
  color: #991b1b;
}

body.mc-2026 .dash-alert-card--warn .dash-alert-card__akcio {
  background: rgba(245, 158, 11, 0.15);
  color: #92400e;
}

body.mc-2026 .dash-alert-card--info .dash-alert-card__akcio {
  background: rgba(59, 130, 246, 0.15);
  color: #1e40af;
}

body.mc-2026 .dash-alert-card--success .dash-alert-card__akcio {
  background: rgba(16, 185, 129, 0.15);
  color: #065f46;
}

/* ── Dashboard kattintható KPI kártya ── */

body.mc-2026 .dash-kpi-clickable {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

body.mc-2026 .dash-kpi-clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}