:root {
      --bg: #0f1115;
      --card: #171a21;
      --muted: #9aa4b2;
      --accent: #6ea8fe;
    }

    body {
      background: radial-gradient(1200px circle at 10% -10%, #1b2230, transparent 60%),
                  radial-gradient(900px circle at 110% 10%, #1a1f2b, transparent 50%),
                  var(--bg);
      color: #e6e9ef;
      min-height: 100vh;
    }

    .app-shell {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.25rem;
    }

    .brand {
      font-weight: 700;
      letter-spacing: .5px;
    }

    .card-soft {
      background: var(--card);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 1rem;
      box-shadow: 0 8px 30px rgba(0,0,0,.35);
    }

    .text-muted-2 { color: var(--muted); }

    a { text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* FullCalendar look tweak */
    .fc {
      background: transparent;
      border-radius: .75rem;
      overflow: hidden;
    }
    .fc .fc-toolbar-title {
      font-size: 1.1rem;
      font-weight: 600;
    }
    .fc .fc-button {
      border-radius: .6rem !important;
    }

    /* Make calendar usable without huge scroll */
    .calendar-wrap {
      height: calc(100vh - 260px);
      min-height: 520px;
    }

    @media (max-width: 768px) {
      .calendar-wrap { height: 70vh; min-height: 420px; }
    }
    /* --- Admin UI helpers --- */
.admin-hero {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1rem;
}

.admin-tabs a {
  color: var(--muted);
  padding:.45rem .7rem;
  border-radius:.6rem;
  text-decoration:none;
}
.admin-tabs a.active,
.admin-tabs a:hover {
  background: rgba(255,255,255,.06);
  color:#fff;
}

.stat-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .9rem;
  padding: 1rem;
  display:flex;
  gap:.75rem;
  align-items:center;
}

.stat-dot {
  width:12px; height:12px; border-radius:999px;
  background: var(--accent);
  box-shadow:0 0 12px var(--accent);
}

.table thead th {
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.04em;
  color: var(--muted);
}

.badge-soft {
  padding:.35rem .6rem;
  border-radius:.6rem;
  font-weight:600;
  letter-spacing:.02em;
}
.badge {
  font-size: .85rem;
}


/* --- My reservations unified cards --- */
.res-card {
  min-height: 96px;
}

.res-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .2px;
}

.res-meta {
  font-size: .95rem;
  margin-top: .25rem;
}

.res-actions {
  min-width: 260px;      /* trzyma prawą kolumnę w ryzach */
}

.res-badge {
  min-width: 130px;      /* stała szerokość statusu */
  text-align: center;
  padding: .55rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .2px;
}

@media (max-width: 768px) {
  .res-actions { min-width: 0; width: 100%; justify-content: flex-start; }
  .res-badge { min-width: 110px; }
}
