/* 911 Auto Service Center — home page styles */
:root {
  --red: #d0312d;
  --red-dark: #a82825;
  --black: #0a0a0a;
  --gray-900: #141414;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #3a3a3a;
  --gray-500: #6b6b6b;
  --gray-400: #9a9a9a;
  --gray-300: #c8c8c8;
  --white: #f7f7f7;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--black);
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-700);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 720px) {
  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.65rem;
    border-top: 1px solid var(--gray-700);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.header-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-700);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-700);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(208, 49, 45, 0.35), transparent 55%),
    linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 1.25rem 4.5rem;
  }
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: linear-gradient(145deg, var(--gray-900), var(--black));
  border: 1px solid var(--gray-700);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.hero-card img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.hero-card dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.hero-card dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.hero-card dd {
  margin: 0;
  font-size: 1rem;
}

.hero-card a {
  color: var(--white);
}

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

.section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.section-intro {
  margin: 0 0 1.75rem;
  color: var(--gray-400);
  max-width: 60ch;
}

.page-hero {
  border-bottom: 1px solid var(--gray-700);
  background: linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2.25rem;
}

.page-hero-inner h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-hero-inner .lead {
  margin: 0;
  max-width: 55ch;
}

.page-hero-em {
  color: var(--white);
  font-weight: 700;
}

.prose {
  color: var(--gray-400);
  max-width: 65ch;
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose li:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--white);
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.credential-list li {
  padding: 1rem 1.15rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  border-left: 4px solid var(--red);
}

.credential-list li.has-cert-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: flex-start;
}

.credential-logo-wrap {
  flex: 0 0 auto;
}

.credential-logo {
  display: block;
  max-width: min(220px, 100%);
  width: 100%;
  height: auto;
}

.credential-logo-body {
  flex: 1 1 200px;
  min-width: 0;
}

@media (max-width: 480px) {
  .credential-list li.has-cert-logo {
    flex-direction: column;
  }

  .credential-logo-wrap {
    align-self: center;
  }
}

.credential-list strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.credential-list__text {
  margin: 0.35rem 0 0;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  align-items: center;
}

.text-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .cards--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  padding: 1.25rem 1.35rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.card .phone {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.map-strip {
  border-top: 1px solid var(--gray-700);
  border-bottom: 1px solid var(--gray-700);
  background: var(--gray-900);
}

.map-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.map-inner h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.map-inner p {
  margin: 0;
  max-width: 50ch;
}

.site-footer {
  padding: 2rem 1.25rem 2.5rem;
  border-top: 1px solid var(--gray-700);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-meta {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer-meta strong {
  color: var(--white);
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Auto repair — Shop Monkey scheduler */
.scheduler-embed-wrap {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
}

.scheduler-iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: none;
}

/* Booking calendar (availability — no PII in API response) */
.booking-calendar-wrap {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  border-left: 4px solid var(--red);
}

.booking-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.booking-cal-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
  text-align: center;
}

.booking-cal-nav {
  flex-shrink: 0;
  min-width: 2.5rem;
}

.booking-cal-hint {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.45;
  max-width: 62ch;
}

.booking-cal-error {
  margin: 0 0 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.45);
  color: #fecaca;
  font-size: 0.9rem;
}

.booking-cal-loading {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-400);
}

.booking-cal-caption {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

/* Classic calendar “sheet”: grid lines + weekday header row */
.booking-cal-sheet {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-600);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--gray-600);
}

.booking-cal-dow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-300);
  text-align: center;
  padding: 0.55rem 0.2rem;
  background: var(--gray-800);
  border: none;
}

.booking-cal-cell--pad {
  min-height: 2.85rem;
  background: var(--gray-900);
}

.booking-cal-day {
  min-height: 2.85rem;
  padding: 0.25rem;
  border: none;
  border-radius: 0;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.12s;
}

.booking-cal-day:hover {
  background: var(--gray-900);
  color: var(--white);
}

.booking-cal-day:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
  z-index: 1;
  position: relative;
}

.booking-cal-day--muted {
  color: var(--gray-500);
  background: #101010;
  font-weight: 600;
}

.booking-cal-day--muted:hover {
  background: var(--gray-900);
  color: var(--gray-400);
}

.booking-cal-day--picked {
  background: rgba(220, 38, 38, 0.35);
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--red);
}

@media (min-width: 480px) {
  .booking-cal-day,
  .booking-cal-cell--pad {
    min-height: 3.1rem;
  }

  .booking-cal-day {
    font-size: 1.05rem;
  }
}

.booking-slots {
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-700);
}

.booking-slots__label {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.booking-slots__sub {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.4;
}

.booking-slots__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.booking-slot-btn {
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: inherit;
  border: 1px solid var(--gray-700);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.booking-slot-btn--open {
  background: var(--black);
  color: var(--white);
}

.booking-slot-btn--open:hover {
  border-color: var(--red);
  background: var(--gray-900);
}

.booking-slot-btn--open.booking-slot-btn--active {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.25);
}

.booking-slot-btn--busy {
  background: var(--gray-900);
  color: var(--gray-500);
  border-color: var(--gray-800);
  cursor: not-allowed;
  opacity: 0.85;
}

.scheduler-selected {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--gray-800);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.4;
}

.scheduler-selected strong {
  color: var(--white);
}

.scheduler-form {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  border-left: 4px solid var(--red);
}

.scheduler-form__lead {
  margin: 0 0 1rem;
  color: var(--gray-400);
  font-size: 0.95rem;
  max-width: 55ch;
}

.scheduler-form__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .scheduler-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .scheduler-field--wide {
    grid-column: 1 / -1;
  }
}

.scheduler-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.scheduler-field input,
.scheduler-field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--gray-700);
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
}

.scheduler-field textarea {
  resize: vertical;
  min-height: 5rem;
}

.scheduler-field input:focus-visible,
.scheduler-field textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.scheduler-form__status {
  margin: 1rem 0 0;
  min-height: 1.4em;
  font-size: 0.95rem;
  color: var(--gray-400);
}

.scheduler-form__actions {
  margin-top: 1rem;
}

/* For sale — inventory listings */
.section--tight {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.sale-how-heading {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.sale-how-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray-400);
  max-width: 65ch;
  line-height: 1.55;
}

.sale-how-list li {
  margin-bottom: 0.4rem;
}

.sale-code {
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--gray-300);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
}

.sale-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .sale-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sale-card {
  display: flex;
  flex-direction: column;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  border-left: 4px solid var(--red);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.sale-card:hover {
  border-color: var(--gray-600);
}

.sale-card__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--black);
  border-bottom: 1px solid var(--gray-700);
}

.sale-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.sale-card__badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid var(--gray-600);
  color: var(--gray-400);
}

.sale-card--sold .sale-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.sale-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.sale-card__title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--white);
}

.sale-card__price {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--white);
  letter-spacing: -0.02em;
}

.sale-card__price--muted {
  color: var(--gray-500);
}

.sale-card__price-note {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-400);
}

.sale-card__lede {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.5;
}

.sale-card__specs {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.sale-card__specs > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.88rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--gray-800);
}

.sale-card__specs > div:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.sale-card__specs dt {
  margin: 0;
  color: var(--gray-500);
  font-weight: 600;
}

.sale-card__specs dd {
  margin: 0;
  color: var(--gray-300);
}

.sale-card__fineprint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.45;
}

.sale-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 480px) {
  .sale-card__specs > div {
    grid-template-columns: 1fr;
  }
}

.sale-loading,
.sale-empty {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.sale-staff-link {
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

.sale-staff-link a {
  color: var(--gray-500);
}

.sale-staff-link a:hover {
  color: var(--red);
}

/* Admin — for-sale manager */
.admin-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  border-left: 4px solid var(--red);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-700);
}

.admin-table th {
  background: var(--gray-900);
  color: var(--gray-300);
  font-weight: 600;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.admin-table td:last-child {
  white-space: nowrap;
}

.btn-sm {
  padding: 0.35rem 0.6rem;
  font-size: 0.82rem;
}

.admin-btn-danger {
  color: #fecaca !important;
  border-color: rgba(220, 38, 38, 0.5) !important;
}

.admin-btn-danger:hover {
  background: rgba(220, 38, 38, 0.15) !important;
}

.admin-form-heading {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--white);
}

.admin-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--red);
}

.admin-login-form {
  max-width: 28rem;
}

.admin-session-meta {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  font-size: 0.92rem;
  color: var(--gray-300);
}

.admin-session-meta strong {
  color: var(--white);
  font-weight: 600;
}
