/* ═══════════════════════════════════════════════════════════════
   R. Starling Horticultural Services — Blazor Server Stylesheet
   ═══════════════════════════════════════════════════════════════ */

:root {
    --g-dark:   #0f2412;
    --g-mid:    #1a3d1e;
    --g-base:   #2d6a35;
    --g-light:  #4ade80;
    --g-pale:   #dcfce7;
    --g-accent: #86efac;
    --g-off:    #f0f7ee;
    --g-text:   #1a2e1c;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Lora', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--g-text); background: #fff; min-height: 100vh; min-height: 100dvh; }
a { text-decoration: none; color: inherit; }

/* ── NAVIGATION ── */
.site-nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--g-dark);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    padding: 0 clamp(20px, 5vw, 64px);
    transition: background .3s, border-color .3s;
}
.site-nav.scrolled {
    background: rgba(15, 36, 18, .97);
    border-bottom-color: rgba(74, 222, 128, .15);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 66px;
}
.nav-link {
    position: relative; font-size: 14px; font-weight: 500;
    color: #fff; cursor: pointer; padding: 4px 0;
    opacity: .85; transition: opacity .2s;
    background: none; border: none; font-family: inherit;
}
.nav-link:hover { opacity: 1; }
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--g-light);
    transition: width .25s;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--g-light); opacity: 1; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-phone { color: var(--g-accent); font-size: 13px; font-weight: 500; }
.nav-login-btn {
    background: transparent; border: 1.5px solid var(--g-light);
    color: var(--g-light); padding: 8px 20px; border-radius: 7px;
    font-weight: 600; font-size: 13px; cursor: pointer;
    transition: background .2s, color .2s; font-family: inherit;
}
.nav-login-btn:hover { background: var(--g-light); color: var(--g-dark); }
.nav-logo { cursor: pointer; display: inline-flex; width: fit-content; }
.nav-logo img { display: block; height: auto; }

/* ── HERO ── */
.hero {
    background: linear-gradient(148deg, var(--g-dark) 0%, var(--g-mid) 55%, #1f4d25 100%);
    padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px);
    position: relative; overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        radial-gradient(circle at 70% 40%, rgba(74,222,128,.07) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(74,222,128,.05) 0%, transparent 50%);
}
.hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 64px;
    flex-wrap: wrap; position: relative;
}
.hero-content { flex: 1 1 420px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25);
    border-radius: 40px; padding: 6px 16px; margin-bottom: 24px;
}
.hero-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--g-light); display: block;
}
.hero-badge-text {
    font-size: 12px; color: var(--g-accent);
    font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 62px);
    color: #fff; line-height: 1.12; font-weight: 700; margin-bottom: 22px;
}
.hero h1 span { color: var(--g-light); }
.hero-desc {
    font-size: 17px; color: #a7d4ae; line-height: 1.85;
    max-width: 500px; margin-bottom: 38px; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── STATS PANEL ── */
.stats-panel { flex: 0 0 auto; }
.stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; width: clamp(280px, 32vw, 360px);
}
.stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(74,222,128,.18);
    border-radius: 12px; padding: 22px 18px;
    backdrop-filter: blur(8px);
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 28px; font-weight: 700;
    color: var(--g-light); line-height: 1;
}
.stat-label { font-size: 12px; color: #7dbf85; margin-top: 7px; font-weight: 500; }

/* ── BUTTONS ── */
.cta-btn {
    background: var(--g-light); color: var(--g-dark);
    border: none; padding: 15px 40px; border-radius: 8px;
    font-weight: 700; font-size: 16px; cursor: pointer;
    transition: background .2s, transform .15s;
    font-family: inherit; display: inline-block;
}
.cta-btn:hover { background: #22c55e; transform: translateY(-2px); }
.cta-btn:disabled { opacity: .7; cursor: not-allowed; }
.cta-btn-ghost {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.45);
    padding: 13px 36px; border-radius: 8px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    transition: border-color .2s, background .2s;
    font-family: inherit; display: inline-block;
}
.cta-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.quote-pill {
    background: var(--g-dark); color: var(--g-light);
    font-size: 12px; font-weight: 600;
    padding: 6px 16px; border-radius: 20px;
    cursor: pointer; transition: background .2s;
    display: inline-block; border: none; font-family: inherit;
}
.quote-pill:hover { background: #163420; }
.quote-pill-lg { padding: 8px 20px; }

/* ── SECTIONS ── */
.section { padding: 84px clamp(20px, 5vw, 64px); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-narrow { max-width: 900px; margin: 0 auto; }
.section-medium { max-width: 1000px; margin: 0 auto; }
.section-label {
    font-size: 11px; color: var(--g-base);
    letter-spacing: 4px; text-transform: uppercase;
    font-weight: 700; margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--g-dark); font-weight: 700;
}
.section-title-sm {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 40px);
    color: var(--g-dark);
}
.bg-white { background: #fff; }
.bg-off { background: var(--g-off); }
.text-center { text-align: center; }
.mb-56 { margin-bottom: 56px; }
.mb-52 { margin-bottom: 52px; }
.mb-44 { margin-bottom: 44px; }

/* ── WHY US CARDS ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--g-off); border-radius: 14px; padding: 32px 26px;
}
.why-icon { font-size: 30px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--g-dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #4a6b4e; line-height: 1.75; }

/* ── SERVICE CARDS ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
}
.svc-card {
    background: #fff; border: 1.5px solid #e4f0e6;
    border-radius: 16px; padding: 32px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative; cursor: pointer;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(45, 106, 53, .12);
    border-color: var(--g-base);
}
.svc-card-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--g-dark); color: var(--g-light);
    font-size: 10px; padding: 3px 12px; border-radius: 20px;
    font-weight: 700; letter-spacing: .5px;
}
.svc-card h3 { font-size: 16px; font-weight: 700; color: var(--g-dark); margin-bottom: 8px; }
.svc-card-tagline { font-size: 13px; color: #5a7d5e; line-height: 1.7; margin-bottom: 18px; }
.svc-card-price { font-size: 15px; font-weight: 700; color: var(--g-base); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.svc-card-unit { font-size: 12px; font-weight: 400; color: #7a9c7e; }

/* ── SERVICE DETAIL CARDS (Services Page) ── */
.svc-detail {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; align-items: start; padding: 40px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-detail-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.svc-detail-header svg,
.svc-detail-header img,
.svc-card svg,
.svc-card img { width: 38px; height: 38px; display: block; flex-shrink: 0; }
.svc-detail-badge {
    background: var(--g-dark); color: var(--g-light);
    font-size: 10px; padding: 2px 10px; border-radius: 20px;
    font-weight: 700; display: inline-block; margin-bottom: 4px;
}
.svc-detail h2 { font-size: 20px; font-weight: 700; color: var(--g-dark); line-height: 1.3; }
.svc-detail-tagline { font-size: 14px; color: #3a5c40; font-style: italic; margin-bottom: 16px; font-weight: 500; }
.svc-detail-desc { font-size: 14px; color: #4a6b4e; line-height: 1.8; }
.svc-perks { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.svc-perk {
    background: var(--g-pale); color: var(--g-dark);
    font-size: 12px; font-weight: 600; padding: 5px 14px;
    border-radius: 20px; border: 1px solid var(--g-light);
}
.svc-pricing-box { background: var(--g-off); border-radius: 12px; padding: 28px; }
.svc-pricing-label {
    font-size: 11px; color: var(--g-base);
    letter-spacing: .8px; text-transform: uppercase;
    font-weight: 700; margin-bottom: 16px;
}
.tier-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px dashed #e0eee2; font-size: 13px;
}
.tier-row:last-of-type { border-bottom: none; }
.tier-range { color: #4a6b4e; font-weight: 500; }
.tier-price { font-weight: 700; color: var(--g-dark); font-size: 16px; }
.tier-unit { font-size: 12px; font-weight: 400; color: #7a9c7e; }
.svc-pricing-note { font-size: 11px; color: #9ab89e; margin-top: 16px; line-height: 1.6; }

/* ── STEP CARDS ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.step-card {
    background: var(--g-off); border-radius: 14px;
    padding: 28px 24px; transition: background .2s;
}
.step-card:hover { background: var(--g-pale); }
.step-num {
    font-size: 30px; font-weight: 800; color: var(--g-light);
    font-family: var(--font-heading); margin-bottom: 14px; line-height: 1;
}
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--g-dark); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: #4a6b4e; line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonial {
    background: #fff; border: 1px solid #e4f0e6;
    border-radius: 14px; padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
}

/* ── REVIEWS CAROUSEL ── */
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.review-card {
    background: #fff;
    border: 1px solid #e4f0e6;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
    animation: fadeSlide .4s ease;
}
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.review-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #3a5a3e;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 80px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px; height: 40px;
    background: var(--g-dark);
    color: var(--g-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}
.review-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--g-dark);
}
.review-date {
    font-size: 12px;
    color: #7a9a7e;
}
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.review-card-header .review-stars {
    margin-bottom: 0;
}
.review-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.google-review-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--g-base);
    font-weight: 600;
    text-decoration: underline;
}
.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.review-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid var(--g-base);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}
.review-dot.active {
    background: var(--g-base);
}

/* Reviews carousel responsive */
@media (max-width: 900px) {
    .reviews-carousel { grid-template-columns: 1fr 1fr; }
    .review-card:nth-child(3) { display: none; }
}
@media (max-width: 600px) {
    .reviews-carousel { grid-template-columns: 1fr; }
    .review-card:nth-child(2) { display: none; }
}

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--g-dark) 0%, var(--g-mid) 100%);
    padding: 72px clamp(20px, 5vw, 64px) 64px;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 50px);
    color: #fff; margin-bottom: 14px; font-weight: 700;
}
.page-hero p { color: var(--g-accent); font-size: 16px; font-weight: 300; max-width: 500px; margin: 0 auto; }

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--g-off);
    padding: 56px clamp(20px, 5vw, 64px);
    text-align: center;
}
.cta-strip h3 {
    font-family: var(--font-heading);
    font-size: 28px; color: var(--g-dark); margin-bottom: 12px;
}
.cta-strip p { color: #4a6b4e; margin-bottom: 28px; font-size: 15px; }
.cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-strip-phone {
    background: var(--g-dark); color: var(--g-light);
    padding: 13px 32px; border-radius: 8px;
    font-weight: 700; font-size: 14px; display: inline-block;
}
.cta-strip-msg {
    background: transparent; border: 1.5px solid var(--g-base);
    color: var(--g-base); padding: 12px 28px; border-radius: 8px;
    font-weight: 600; font-size: 14px; cursor: pointer;
    font-family: inherit;
}

/* ── ABOUT PAGE ── */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.about-milestone {
    background: var(--g-off); border-radius: 12px;
    padding: 20px 24px; display: flex; gap: 16px; align-items: center;
}
.about-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--g-light); flex-shrink: 0;
}
.about-milestone-title { font-weight: 700; color: var(--g-dark); font-size: 14px; }
.about-milestone-sub { color: #7a9c7e; font-size: 13px; margin-top: 2px; }

/* ── SERVICE AREAS ── */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px; margin-bottom: 56px;
}
.area-card {
    background: var(--g-off); border-radius: 12px;
    padding: 20px 16px; text-align: center;
}
.area-card.home-base { background: var(--g-dark); }
.area-card.home-base .area-name { color: var(--g-light); }
.area-icon { font-size: 18px; margin-bottom: 6px; }
.area-name { font-weight: 700; color: var(--g-dark); font-size: 14px; }
.area-tag { font-size: 11px; color: var(--g-accent); margin-top: 4px; }
.area-cta-box {
    background: var(--g-off); border-radius: 14px;
    padding: 36px 32px; text-align: center;
}

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; gap: 14px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 2fr 1fr 1fr; }
.form-input {
    width: 100%; background: #f7f9f6;
    border: 1.5px solid #cde0d0; border-radius: 8px;
    padding: 12px 14px; font-size: 14px; color: var(--g-text);
    outline: none; font-family: inherit; transition: border-color .2s;
    box-sizing: border-box;
}
.form-input:focus { border-color: var(--g-base); }
textarea.form-input { resize: vertical; }
select.form-input { appearance: auto; }
.form-divider { border-top: 1px dashed #cde0d0; padding-top: 18px; margin-top: 4px; }
.form-hint { font-size: 12px; color: #7a9c7e; margin-bottom: 12px; }
.form-services-box {
    background: #f7f9f6; border: 1.5px solid #cde0d0;
    border-radius: 8px; padding: 18px 20px;
}
.form-services-label {
    font-size: 12px; color: var(--g-base); font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px;
}
.form-services-label span { font-weight: 400; text-transform: none; color: #9ab89e; }
.form-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.form-checkbox-label {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; font-size: 14px; color: var(--g-text); user-select: none;
}
.form-checkbox {
    width: 16px; height: 16px; accent-color: var(--g-base);
    cursor: pointer; flex-shrink: 0;
}
.form-error {
    background: #fef2f2; border: 1px solid #fca5a5;
    border-radius: 8px; padding: 12px 16px;
    color: #991b1b; font-size: 14px;
}
.form-success {
    text-align: center; padding: 64px 32px;
    background: var(--g-off); border-radius: 16px;
}
.form-success-icon { font-size: 52px; margin-bottom: 20px; }
.form-success h2 {
    font-family: var(--font-heading);
    font-size: 28px; color: var(--g-dark); margin-bottom: 14px;
}
.form-success p { color: #4a6b4e; font-size: 15px; line-height: 1.8; }
.form-legal { font-size: 11px; color: #9ab89e; line-height: 1.6; }
.form-legal a { color: #5a7d5e; }

/* ── CONTACT INFO CARDS ── */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px; margin-top: 52px;
}
.contact-card {
    background: var(--g-off); border-radius: 12px;
    padding: 22px 18px; display: block;
    transition: background .2s;
}
.contact-card:hover { background: var(--g-pale); }
.contact-card-icon { font-size: 24px; margin-bottom: 8px; }
.contact-card-title { font-weight: 700; color: var(--g-text); font-size: 13px; }
.contact-card-val { color: #5a7d5e; font-size: 12px; margin-top: 3px; }

/* ── FINAL CTA ── */
.final-cta {
    background: linear-gradient(135deg, var(--g-dark) 0%, var(--g-mid) 100%);
    padding: 80px clamp(20px, 5vw, 64px);
    text-align: center;
}
.final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    color: #fff; margin-bottom: 16px;
}
.final-cta p { color: #a7d4ae; font-size: 16px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta-phone {
    background: transparent; border: 2px solid rgba(255,255,255,.4);
    color: #fff; padding: 14px 36px; border-radius: 8px;
    font-weight: 600; font-size: 15px; display: inline-block;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--g-dark); color: #fff;
    padding: 52px clamp(20px, 5vw, 64px) 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px; margin-bottom: 48px;
}
.footer-desc { color: #6b9e73; font-size: 13px; line-height: 1.8; margin-top: 14px; }
.footer-heading {
    font-weight: 700; font-size: 13px; color: var(--g-accent);
    letter-spacing: .8px; text-transform: uppercase; margin-bottom: 14px;
}
.footer-link {
    color: #6b9e73; font-size: 13px; margin-bottom: 8px;
    cursor: pointer; display: block; background: none; border: none;
    font-family: inherit; padding: 0; text-align: left;
}
.footer-link:hover { color: var(--g-accent); }
.footer-link-accent { color: var(--g-accent); }
.footer-bottom {
    border-top: 1px solid #1f3d23; padding-top: 24px;
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: #3a5c40; font-size: 12px; }
.footer-staff-link {
    background: transparent; border: none;
    color: #3a5c40; font-size: 12px;
    cursor: pointer; font-family: inherit;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .55s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero-inner { flex-direction: column !important; }
    .why-grid { grid-template-columns: 1fr !important; }
    .steps-grid { grid-template-columns: 1fr 1fr !important; }
    .nav-links, .nav-phone { display: none !important; }
    .about-grid { grid-template-columns: 1fr !important; }
    .svc-detail { grid-template-columns: 1fr !important; }
    .form-row-2 { grid-template-columns: 1fr !important; }
    .form-row-3 { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   BLAZOR ERROR / RECONNECT UI — hide the default white box
   ═══════════════════════════════════════════════════════════════ */

#blazor-error-ui {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a1a;
    color: #e8e4df;
    padding: 12px 20px;
    font-size: 13px;
    text-align: center;
    border-top: 2px solid #f87171;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    color: #4ade80;
    margin-left: 12px;
    font-weight: 600;
}

#components-reconnect-modal {
    display: none !important;
}

#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected {
    display: flex !important;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
}

#components-reconnect-modal.components-reconnect-show::after,
#components-reconnect-modal.components-reconnect-failed::after,
#components-reconnect-modal.components-reconnect-rejected::after {
    content: 'Reconnecting to server...';
    background: #1a1a1a;
    color: #e8e4df;
    padding: 20px 32px;
    border-radius: 12px;
    border: 1px solid #2e2e2e;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

#components-reconnect-modal.components-reconnect-failed::after {
    content: 'Connection lost. Reload the page to continue.';
    border-color: #f87171;
}

#components-reconnect-modal.components-reconnect-rejected::after {
    content: 'Session expired. Reload the page to continue.';
    border-color: #fbbf24;
}
