/* YoungCoders — kid-friendly, modern, mobile-first */
:root {
    --brand: #ff7a1a;
    --brand-dark: #d95d00;
    --accent: #2e86de;
    --text: #1f2933;
    --muted: #6b7280;
    --bg: #ffffff;
    --bg-soft: #fff8f2;
    --radius: 12px;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --max-w: 1100px;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

[hidden] { display: none !important; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: #fff; box-shadow: var(--shadow);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.25rem; }
.logo img { height: 48px; }
.main-nav { display: flex; gap: 1.5rem; align-items: center; }
.main-nav a { color: var(--text); font-weight: 500; }
.main-nav a:hover { color: var(--brand); text-decoration: none; }
.btn-nav {
    background: var(--brand); color: #fff !important;
    padding: 0.5rem 1rem; border-radius: var(--radius);
}
.btn-nav:hover { background: var(--brand-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ---------- buttons ---------- */
.btn {
    display: inline-block; padding: 0.85rem 1.75rem; border-radius: var(--radius);
    font-weight: 600; cursor: pointer; border: none; transition: transform .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline {
    background: transparent; color: var(--brand);
    border: 2px solid var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; }

/* ---------- hero ---------- */
.hero {
    min-height: 60vh;
    background-size: cover; background-position: center;
    color: #fff;
    display: flex; align-items: center;
}
.hero-overlay {
    width: 100%; min-height: 60vh;
    background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
    display: flex; align-items: center;
}
.hero-content { padding: 4rem 1.25rem; max-width: 700px; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 1rem; }
.hero-content .tagline { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.95; }

/* ---------- sections ---------- */
section { padding: 4rem 0; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 2.5rem; }
.page-header { background: var(--bg-soft); padding: 3rem 0 2rem; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }

/* ---------- service cards ---------- */
.service-grid {
    display: grid; gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: transform .2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card img { aspect-ratio: 3/2; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.25rem; color: var(--brand); }
.subtitle { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.75rem; }
.card-body p { margin-bottom: 1rem; }

/* ---------- services detail ---------- */
.services-detail .service-detail {
    display: grid; gap: 2rem; grid-template-columns: 1fr 1fr;
    margin-bottom: 4rem; align-items: center;
}
.services-detail .service-detail:nth-child(even) { direction: rtl; }
.services-detail .service-detail:nth-child(even) > * { direction: ltr; }
.service-detail img { border-radius: var(--radius); box-shadow: var(--shadow); }
.service-detail-body h2 { color: var(--brand); margin-bottom: 0.5rem; }
.service-detail-body ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.service-detail-body h4 { margin: 1.25rem 0 0.5rem; }
.service-meta { display: flex; gap: 1.5rem; color: var(--muted); margin: 1rem 0; }

/* ---------- why us / benefits ---------- */
.why-us { background: var(--bg-soft); }
.benefit-grid {
    display: grid; gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.benefit { text-align: center; padding: 1.5rem; }
.benefit-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.benefit h4 { margin-bottom: 0.5rem; }

/* ---------- testimonials ---------- */
.testimonial-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
    background: var(--bg-soft); padding: 1.75rem; border-radius: var(--radius);
    border-left: 4px solid var(--brand);
}
.testimonial p { font-style: italic; margin-bottom: 0.75rem; }
.testimonial footer { color: var(--muted); font-size: 0.9rem; }
.stars { color: var(--brand); margin-left: 0.5rem; }

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--brand); color: #fff; text-align: center;
}
.cta-band h2 { margin-bottom: 1.5rem; }

/* ---------- about ---------- */
.about-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
}
.highlights { list-style: none; margin-top: 1.5rem; }
.highlights li { margin-bottom: 0.5rem; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: #fff; padding: 1rem 1.25rem;
    border-radius: var(--radius); margin-bottom: 0.75rem; box-shadow: var(--shadow);
}
.faq-item summary { font-weight: 600; cursor: pointer; }
.faq-item p { margin-top: 0.75rem; color: var(--muted); }

/* ---------- contact form ---------- */
.contact-grid {
    display: grid; grid-template-columns: 2fr 1fr; gap: 3rem;
}
.inquiry-form { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.inquiry-form label {
    display: flex; flex-direction: column; gap: 0.35rem; font-weight: 500;
}
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
    padding: 0.75rem; border: 1px solid #d1d5db; border-radius: 8px; font: inherit;
}
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
    outline: 2px solid var(--brand); border-color: var(--brand);
}
.form-status { min-height: 1.5em; font-weight: 500; }
.form-status.success {
    color: #0f5132;
    background: #d1e7dd;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #198754;
}
.form-status.error {
    color: #842029;
    background: #f8d7da;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.contact-info { background: var(--bg-soft); padding: 1.5rem; border-radius: var(--radius); }

/* ---------- footer ---------- */
.site-footer { background: #1f2933; color: #d1d5db; padding: 3rem 0 1rem; margin-top: 2rem; }
.footer-grid {
    display: grid; gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-grid h4 { color: #fff; margin-bottom: 0.75rem; }
.footer-logo { height: 42px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-links a { color: var(--brand); }
.footer-bottom { text-align: center; padding-top: 1.5rem; margin-top: 2rem; border-top: 1px solid #374151; }

/* ---------- responsive ---------- */
@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
                background: #fff; flex-direction: column; padding: 1rem; box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .services-detail .service-detail { grid-template-columns: 1fr; }
    .services-detail .service-detail:nth-child(even) { direction: ltr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ---------- cart badge in nav ---------- */
.cart-nav { display: inline-flex; align-items: center; gap: 0.4rem; }
.cart-badge {
    display: none;
    background: #fff; color: var(--brand);
    font-size: 0.8rem; font-weight: 700;
    min-width: 1.4rem; padding: 0.1rem 0.4rem;
    border-radius: 999px; text-align: center;
    line-height: 1.2;
}

/* ---------- service card actions ---------- */
.card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.card-actions .btn { padding: 0.6rem 1rem; font-size: 0.95rem; }

/* ---------- cart page ---------- */
.cart-section { padding: 3rem 0; }
.cart-grid {
    display: grid; gap: 2rem;
    grid-template-columns: 1.5fr 1fr;
}
.cart-items-wrapper h2, .checkout-panel h2 {
    color: var(--brand); margin-bottom: 1rem;
}
.cart-items { display: flex; flex-direction: column; gap: 0.75rem; }
.cart-item {
    background: #fff; padding: 1rem 1.25rem;
    border-radius: var(--radius); box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: space-between;
    border-left: 4px solid var(--brand);
}
.cart-item h4 { margin: 0; color: var(--text); }
.btn-remove {
    background: transparent; border: none; color: var(--muted);
    font-size: 1.25rem; cursor: pointer; padding: 0.25rem 0.5rem;
    border-radius: 6px; transition: background .15s ease, color .15s ease;
}
.btn-remove:hover { background: #fee; color: #dc3545; }

.cart-empty {
    background: var(--bg-soft); padding: 3rem 1.5rem;
    border-radius: var(--radius); text-align: center;
}
.cart-empty p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--muted); }

/* ---------- checkout panel ---------- */
.checkout-panel {
    background: var(--bg-soft); padding: 1.75rem;
    border-radius: var(--radius); box-shadow: var(--shadow);
    align-self: start; position: sticky; top: 5rem;
}
.checkout-note { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.checkout-form { display: grid; gap: 1rem; }
.checkout-form label {
    display: flex; flex-direction: column; gap: 0.35rem; font-weight: 500;
}
.checkout-form input {
    padding: 0.75rem; border: 1px solid #d1d5db; border-radius: 8px; font: inherit;
}
.checkout-form input:focus {
    outline: 2px solid var(--brand); border-color: var(--brand);
}
.field-hint { color: var(--muted); font-size: 0.85rem; font-weight: 400; }
.field-error { color: #dc3545; font-size: 0.85rem; font-weight: 500; min-height: 1em; }
.btn-checkout { width: 100%; margin-top: 0.5rem; }

/* ---------- toast ---------- */
.toast {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1f2933; color: #fff;
    padding: 0.9rem 1.5rem; border-radius: 999px;
    box-shadow: var(--shadow); font-weight: 500;
    z-index: 1000; opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---------- responsive additions ---------- */
@media (max-width: 768px) {
    .cart-grid { grid-template-columns: 1fr; }
    .checkout-panel { position: static; }
    .card-actions { flex-direction: column; }
    .card-actions .btn { width: 100%; }
}

/* ---------- program carousel ---------- */
.program-carousel {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 3.5rem;   /* room for arrows */
    outline: none;
}
.program-carousel:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.35);
    border-radius: var(--radius);
}
.carousel-track {
    position: relative;
    min-height: 520px;   /* prevents layout jump between slides */
}
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;   /* takes up space when active */
}
.carousel-slide img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.carousel-slide .card-body { padding: 1.75rem; }
.carousel-slide h3 { color: var(--brand); margin-bottom: 0.25rem; }

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: none;
    background: var(--brand);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background .2s ease, transform .15s ease;
    z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { background: var(--brand-dark); transform: translateY(-50%) scale(1.05); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
}
.carousel-dot {
    width: 0.75rem; height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, transform .2s ease;
}
.carousel-dot:hover { background: #9ca3af; }
.carousel-dot.is-active {
    background: var(--brand);
    transform: scale(1.3);
}

/* ---------- checkout success panel ---------- */
.checkout-success {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-soft);
    border: 2px solid var(--brand);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    animation: successPop .35s ease-out;
}
@keyframes successPop {
    from { opacity: 0; transform: translateY(20px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.success-icon { font-size: 3.5rem; margin-bottom: 0.5rem; }
.checkout-success h2 { color: var(--brand); margin-bottom: 1rem; }
.success-lead { font-size: 1.1rem; margin-bottom: 1.5rem; line-height: 1.6; }
.success-ref {
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--brand);
    text-align: left;
    margin: 1.5rem 0;
}
.success-ref p { margin: 0.3rem 0; word-break: break-all; }
.success-checklist { text-align: left; margin: 1.5rem 0; }
.success-checklist h3 { color: var(--brand); margin-bottom: 0.75rem; }
.success-checklist ol { padding-left: 1.5rem; line-height: 1.8; }
.success-checklist li { margin-bottom: 0.5rem; }
.success-actions {
    display: flex; gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ---------- responsive additions ---------- */
@media (max-width: 768px) {
    .program-carousel { padding: 0 2.5rem; }
    .carousel-track { min-height: 580px; }
    .carousel-arrow { width: 2.25rem; height: 2.25rem; font-size: 1.5rem; }
    .checkout-success { padding: 1.75rem 1.25rem; }
    .success-actions { flex-direction: column; }
    .success-actions .btn { width: 100%; }
}

/* ================================================================
   ADMIN DASHBOARD
   ================================================================ */

.admin-body { background: #f3f4f6; min-height: 100vh; }

.admin-header {
    background: #1f2933; color: #fff;
    padding: 1.25rem 0; box-shadow: var(--shadow);
    margin-bottom: 2rem;
}
.admin-header-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.admin-header h1 { font-size: 1.5rem; margin: 0; }
.env-pill {
    padding: 0.25rem 0.75rem; border-radius: 999px;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
}
.env-development, .env-dev, .env-local { background: #fbbf24; color: #78350f; }
.env-production, .env-prod { background: #10b981; color: #064e3b; }

.admin-main { padding-bottom: 4rem; }

.admin-card {
    background: #fff; border-radius: var(--radius);
    padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow);
}
.admin-card h2 {
    color: var(--brand); font-size: 1.25rem; margin-bottom: 1rem;
}

/* Health */
.health-grid {
    display: grid; gap: 1rem; margin-bottom: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.health-item {
    background: var(--bg-soft); padding: 0.9rem 1rem;
    border-radius: 8px; border-left: 4px solid var(--brand);
    display: flex; flex-direction: column; gap: 0.25rem;
}
.health-item .label {
    font-size: 0.75rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.health-status {
    display: inline-block; padding: 0.15rem 0.6rem; border-radius: 999px;
    font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
}
.health-status.is-ok { background: #d1fae5; color: #065f46; }
.health-status.is-degraded { background: #fee2e2; color: #991b1b; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; }

/* Tabs */
.admin-tabs {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    border-bottom: 2px solid #e5e7eb; margin-bottom: 1rem; padding-bottom: 0.5rem;
}
.admin-tab {
    background: transparent; border: none; padding: 0.5rem 1rem;
    cursor: pointer; font: inherit; color: var(--muted); font-weight: 500;
    border-radius: 8px 8px 0 0; display: flex; align-items: center; gap: 0.5rem;
}
.admin-tab:hover { background: var(--bg-soft); }
.admin-tab.is-active { color: var(--brand); background: var(--bg-soft); }
.tab-count {
    background: #e5e7eb; color: var(--text);
    padding: 0.1rem 0.5rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
}
.admin-tab.is-active .tab-count { background: var(--brand); color: #fff; }

/* Table */
.table-wrap { overflow-x: auto; }
.admin-table {
    width: 100%; border-collapse: collapse; font-size: 0.9rem;
}
.admin-table th, .admin-table td {
    padding: 0.75rem 0.9rem; text-align: left; border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}
.admin-table th {
    background: #f9fafb; font-weight: 600; color: var(--text);
    text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.03em;
}
.admin-table tr:hover td { background: #fafafa; }
.cell-date { white-space: nowrap; color: var(--muted); font-family: Consolas, monospace; font-size: 0.85rem; }
.cell-programs { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.program-chip {
    background: var(--bg-soft); color: var(--brand);
    padding: 0.2rem 0.6rem; border-radius: 999px;
    font-size: 0.8rem; font-weight: 500;
}
.cell-ref { white-space: nowrap; }
.cell-ref code {
    background: #f3f4f6; padding: 0.15rem 0.4rem; border-radius: 4px;
    font-size: 0.8rem;
}
.btn-copy {
    background: none; border: none; cursor: pointer; padding: 0.15rem 0.35rem;
    border-radius: 4px; transition: background .15s ease;
}
.btn-copy:hover { background: #e5e7eb; }
.empty { text-align: center; color: var(--muted); padding: 2rem !important; }

/* Status select */
.status-select {
    padding: 0.4rem 0.6rem; border-radius: 8px; font: inherit; font-size: 0.85rem;
    border: 1px solid #d1d5db; background: #fff; cursor: pointer; font-weight: 500;
}
.status-select:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.status-select:disabled { opacity: 0.6; cursor: wait; }
.status-select.status-pending_payment    { background: #fef3c7; color: #78350f; border-color: #fbbf24; }
.status-select.status-payment_confirmed  { background: #dbeafe; color: #1e3a8a; border-color: #60a5fa; }
.status-select.status-scheduled          { background: #d1fae5; color: #065f46; border-color: #34d399; }
.status-select.status-cancelled          { background: #fee2e2; color: #991b1b; border-color: #f87171; }

/* Toast variants for admin */
.toast-success { background: #065f46; }
.toast-error   { background: #991b1b; }

/* ================================================================
   ADMIN LOGIN
   ================================================================ */

.admin-login-body {
    background: linear-gradient(135deg, #fff8f2 0%, #ffe4d1 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
}
.login-wrap { width: 100%; max-width: 420px; }
.login-card {
    background: #fff; padding: 2.5rem 2rem; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); text-align: center;
}
.login-logo {
    font-size: 3rem; margin-bottom: 0.75rem;
    display: inline-block; padding: 0.75rem 1rem;
    background: var(--bg-soft); border-radius: 16px;
}
.login-card h1 {
    font-size: 1.5rem; margin-bottom: 0.25rem; color: var(--text);
}
.login-subtitle {
    color: var(--muted); font-size: 0.95rem; margin-bottom: 1.75rem;
}
.login-form { display: grid; gap: 1rem; text-align: left; }
.login-form label {
    display: flex; flex-direction: column; gap: 0.35rem;
    font-weight: 500; font-size: 0.9rem;
}
.login-form input {
    padding: 0.75rem 0.9rem; border: 1px solid #d1d5db;
    border-radius: 8px; font: inherit;
}
.login-form input:focus {
    outline: 2px solid var(--brand); border-color: var(--brand);
}
.btn-login { width: 100%; margin-top: 0.5rem; }
.login-error {
    background: #fee2e2; color: #991b1b;
    padding: 0.75rem 1rem; border-radius: 8px;
    border-left: 4px solid #dc3545;
    margin-bottom: 1rem; text-align: left; font-size: 0.9rem;
}

/* ================================================================
   ADMIN HEADER USER SECTION
   ================================================================ */

.admin-header-title { display: flex; align-items: center; gap: 1rem; }
.admin-header-user {
    display: flex; align-items: center; gap: 1rem;
    color: #d1d5db; font-size: 0.9rem;
}
.admin-username {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.75rem; border-radius: 999px;
}
.logout-form { margin: 0; }
.logout-form .btn-outline {
    color: #fff; border-color: rgba(255, 255, 255, 0.4);
}
.logout-form .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff; border-color: #fff;
}

/* ---------- admin: card header with refresh ---------- */
.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.admin-card-header h2 { margin: 0; }

/* ---------- admin: locked/scheduled state ---------- */
.cell-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.status-lock {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.7;
}
.status-select:disabled {
    background: #f9fafb !important;
    color: var(--muted) !important;
    cursor: not-allowed;
    opacity: 0.85;
}