/* /Components/Landing/LandingPage.razor.rz.scp.css */
/* ══════════════════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════════════════ */
.lp-root[b-za8yhhy6f6] {
    --lp-blue-1: #1565C0;
    --lp-blue-2: #0D47A1;
    --lp-blue-dark: #1A237E;
    --lp-text: var(--mud-palette-text-primary, #111827);
    --lp-muted: var(--mud-palette-text-secondary, #6b7280);
    --lp-bg: var(--mud-palette-background, #ffffff);
    --lp-bg-alt: var(--mud-palette-background-grey, #f8fafc);
    --lp-radius: 16px;
    --lp-shadow: 0 2px 24px rgba(0,0,0,0.08);
    --lp-shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
    --lp-transition: 0.22s ease;
}

/* ══════════════════════════════════════════════════════
   ROOT / LAYOUT BASE
══════════════════════════════════════════════════════ */
.lp-root[b-za8yhhy6f6] { width: 100%; }

.lp-container[b-za8yhhy6f6] {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.lp-hero[b-za8yhhy6f6] {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(145deg, #1565C0 0%, #0D47A1 60%, #1A237E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1.5rem 8rem;
}

/* Noise mesh overlay */
.lp-hero-mesh[b-za8yhhy6f6] {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 35%, rgba(255,255,255,0.07) 0%, transparent 55%),
        radial-gradient(circle at 80% 65%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating orbs */
.lp-orb[b-za8yhhy6f6] {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.lp-orb-1[b-za8yhhy6f6] {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 65%);
    top: -170px;
    right: -160px;
    animation: lp-drift 10s ease-in-out infinite;
}

.lp-orb-2[b-za8yhhy6f6] {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
    bottom: -110px;
    left: -100px;
    animation: lp-drift 13s ease-in-out infinite reverse;
    animation-delay: -3s;
}

@@keyframes lp-drift {
    0%[b-za8yhhy6f6], 100%[b-za8yhhy6f6] { transform: translateY(0) scale(1); }
    50%[b-za8yhhy6f6]       { transform: translateY(30px) scale(1.05); }
}

.lp-hero-inner[b-za8yhhy6f6] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
    max-width: 820px;
    width: 100%;
}

/* Pill badge */
.lp-hero-pill[b-za8yhhy6f6] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.88);
    font-size: 0.775rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.lp-hero-pill svg[b-za8yhhy6f6] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Heading */
.lp-hero-h1[b-za8yhhy6f6] {
    margin: 0;
    font-size: clamp(2.1rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.lp-hero-highlight[b-za8yhhy6f6] { color: #BBDEFB; }

/* Desc */
.lp-hero-desc[b-za8yhhy6f6] {
    margin: 0;
    font-size: clamp(0.92rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.78);
    max-width: 600px;
    line-height: 1.75;
}

/* CTA buttons */
.lp-hero-btns[b-za8yhhy6f6] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    margin-top: 0.3rem;
}

.lp-btn[b-za8yhhy6f6] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition), background var(--lp-transition), border-color var(--lp-transition);
    border: none;
    line-height: 1.4;
}

.lp-btn svg[b-za8yhhy6f6] { width: 17px; height: 17px; flex-shrink: 0; pointer-events: none; }

.lp-btn-hero-solid[b-za8yhhy6f6] {
    background: white;
    color: var(--lp-blue-2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.16);
}
.lp-btn-hero-solid:hover[b-za8yhhy6f6] {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.24);
}

.lp-btn-hero-ghost[b-za8yhhy6f6] {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.55);
}
.lp-btn-hero-ghost:hover[b-za8yhhy6f6] {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.82);
    transform: translateY(-2px);
}

/* Wave divider */
.lp-hero-wave[b-za8yhhy6f6] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    height: 110px;
}
.lp-hero-wave svg[b-za8yhhy6f6] { width: 100%; height: 100%; display: block; }

/* ══════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════ */
.lp-stats[b-za8yhhy6f6] {
    background: var(--lp-bg-alt);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lp-stats-row[b-za8yhhy6f6] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0.5rem 0;
}

.lp-stat-item[b-za8yhhy6f6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1.4rem 2.4rem;
    flex: 1 1 180px;
    min-width: 120px;
}

.lp-stat-num[b-za8yhhy6f6] {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--lp-blue-1);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lp-stat-lbl[b-za8yhhy6f6] {
    font-size: 0.78rem;
    color: var(--lp-muted);
    font-weight: 500;
    text-align: center;
}

.lp-stat-sep[b-za8yhhy6f6] {
    width: 1px;
    height: 36px;
    background: rgba(0,0,0,0.10);
    flex-shrink: 0;
    align-self: center;
}

/* ══════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════ */
.lp-section[b-za8yhhy6f6] { padding: 5.5rem 1rem; }

.lp-bg-alt[b-za8yhhy6f6] { background: var(--lp-bg-alt); }

.lp-sec-hdr[b-za8yhhy6f6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Label chip */
.lp-label[b-za8yhhy6f6] {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    border: 1.5px solid var(--lp-blue-1);
    color: var(--lp-blue-1);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.lp-label-sec[b-za8yhhy6f6] {
    border-color: #8E24AA;
    color: #8E24AA;
}

.lp-sec-h2[b-za8yhhy6f6] {
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.lp-sec-desc[b-za8yhhy6f6] {
    margin: 0;
    max-width: 540px;
    color: var(--lp-muted);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   CARDS (Sobre nosotros)
══════════════════════════════════════════════════════ */
.lp-cards-grid[b-za8yhhy6f6] {
    display: grid;
    gap: 1.5rem;
}

.lp-grid-3[b-za8yhhy6f6] { grid-template-columns: repeat(3, 1fr); }
.lp-grid-4[b-za8yhhy6f6] { grid-template-columns: repeat(4, 1fr); }

.lp-card[b-za8yhhy6f6] {
    background: var(--lp-bg);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--lp-radius);
    padding: 2.2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    box-shadow: var(--lp-shadow);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-card:hover[b-za8yhhy6f6] {
    transform: translateY(-7px);
    box-shadow: var(--lp-shadow-hover);
}

.lp-card-icon[b-za8yhhy6f6] {
    width: 62px;
    height: 62px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.lp-card-icon svg[b-za8yhhy6f6] { width: 28px; height: 28px; color: white; }

.lp-card-title[b-za8yhhy6f6] {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-card-text[b-za8yhhy6f6] {
    margin: 0;
    font-size: 0.88rem;
    color: var(--lp-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   TABS (Plan de estudios)
══════════════════════════════════════════════════════ */
.lp-tabs-root[b-za8yhhy6f6] { }

.lp-tabs-bar[b-za8yhhy6f6] {
    display: flex;
    gap: 0.25rem;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.lp-tab-btn[b-za8yhhy6f6] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--lp-muted);
    cursor: pointer;
    transition: color var(--lp-transition), border-color var(--lp-transition);
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
}

.lp-tab-btn svg[b-za8yhhy6f6] { width: 16px; height: 16px; flex-shrink: 0; }

.lp-tab-btn:hover[b-za8yhhy6f6] { color: var(--lp-blue-1); }

.lp-tab-btn.active[b-za8yhhy6f6] {
    color: var(--lp-blue-1);
    border-bottom-color: var(--lp-blue-1);
}

.lp-tab-panel[b-za8yhhy6f6] {
    padding: 2.2rem 1rem 1.5rem;
}

.lp-subjects[b-za8yhhy6f6] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

/* Chips */
.lp-chip[b-za8yhhy6f6] {
    display: inline-block;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1.5px solid;
    transition: background var(--lp-transition), color var(--lp-transition);
}

.lp-chip-blue[b-za8yhhy6f6]   { border-color: var(--lp-blue-1); color: var(--lp-blue-1); }
.lp-chip-blue:hover[b-za8yhhy6f6]   { background: var(--lp-blue-1); color: white; }

.lp-chip-teal[b-za8yhhy6f6]   { border-color: #00897B; color: #00695C; }
.lp-chip-teal:hover[b-za8yhhy6f6]   { background: #00897B; color: white; }

.lp-chip-purple[b-za8yhhy6f6] { border-color: #8E24AA; color: #6A1B9A; }
.lp-chip-purple:hover[b-za8yhhy6f6] { background: #8E24AA; color: white; }

/* Notice */
.lp-notice[b-za8yhhy6f6] {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 1.4rem;
    padding: 0.9rem 1.1rem;
    background: rgba(21, 101, 192, 0.06);
    border: 1px solid rgba(21, 101, 192, 0.18);
    border-radius: 10px;
    color: var(--lp-blue-2);
    font-size: 0.84rem;
    line-height: 1.65;
}

.lp-notice svg[b-za8yhhy6f6] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════════
   CONTACT CARDS
══════════════════════════════════════════════════════ */
.lp-contact-card[b-za8yhhy6f6] {
    background: var(--lp-bg);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--lp-radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
    box-shadow: var(--lp-shadow);
    text-decoration: none;
    color: inherit;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition), border-color var(--lp-transition);
}

.lp-contact-card:hover[b-za8yhhy6f6] {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-hover);
    border-color: rgba(21, 101, 192, 0.20);
}

.lp-contact-icon[b-za8yhhy6f6] {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0.85rem;
}

.lp-contact-icon svg[b-za8yhhy6f6] { width: 24px; height: 24px; color: white; }

.lp-contact-title[b-za8yhhy6f6] {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-contact-line[b-za8yhhy6f6] {
    font-size: 0.87rem;
    color: var(--lp-muted);
    margin-top: 0.25rem;
}

.lp-contact-sub[b-za8yhhy6f6] {
    font-size: 0.78rem;
    color: var(--lp-muted);
    opacity: 0.7;
}

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════ */
.lp-animate[b-za8yhhy6f6] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-animate.lp-visible[b-za8yhhy6f6] {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay via data-delay attribute in JS, but also
   give CSS fallback delays for cards 1–4 */
.lp-animate[data-delay="1"][b-za8yhhy6f6] { transition-delay: 0.08s; }
.lp-animate[data-delay="2"][b-za8yhhy6f6] { transition-delay: 0.17s; }
.lp-animate[data-delay="3"][b-za8yhhy6f6] { transition-delay: 0.26s; }
.lp-animate[data-delay="4"][b-za8yhhy6f6] { transition-delay: 0.35s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@@media (max-width: 1024px) {
    .lp-grid-4[b-za8yhhy6f6] { grid-template-columns: repeat(2, 1fr); }
}

@@media (max-width: 768px) {
    .lp-hero[b-za8yhhy6f6] { min-height: 80vh; padding: 5rem 1rem 7rem; }
    .lp-grid-3[b-za8yhhy6f6] { grid-template-columns: repeat(2, 1fr); }
    .lp-stat-item[b-za8yhhy6f6] { padding: 1rem 1.2rem; }
    .lp-stat-sep[b-za8yhhy6f6] { display: none; }
    .lp-section[b-za8yhhy6f6] { padding: 4rem 0.75rem; }
}

@@media (max-width: 520px) {
    .lp-hero[b-za8yhhy6f6] { padding: 4rem 1rem 6.5rem; }
    .lp-hero-btns[b-za8yhhy6f6] { flex-direction: column; width: 100%; }
    .lp-btn[b-za8yhhy6f6] { justify-content: center; }
    .lp-grid-3[b-za8yhhy6f6],
    .lp-grid-4[b-za8yhhy6f6] { grid-template-columns: 1fr; }
    .lp-stats-row[b-za8yhhy6f6] { gap: 0; }
    .lp-tabs-bar[b-za8yhhy6f6] { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
    .lp-section[b-za8yhhy6f6] { padding: 3.5rem 0.5rem; }
}

@@media (prefers-reduced-motion: reduce) {
    .lp-orb[b-za8yhhy6f6] { animation: none; }
    .lp-animate[b-za8yhhy6f6] { transition: none; }
    .lp-card[b-za8yhhy6f6], .lp-contact-card[b-za8yhhy6f6] { transition: none; }
}
.lp-hero[b-za8yhhy6f6] {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 65%, #1A237E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 1.5rem 7rem;
}

/* Blobs decorativos */
.lp-blob[b-za8yhhy6f6] {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.lp-blob-1[b-za8yhhy6f6] {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    top: -180px;
    right: -180px;
    animation: lp-float 9s ease-in-out infinite;
}

.lp-blob-2[b-za8yhhy6f6] {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    bottom: -120px;
    left: -120px;
    animation: lp-float 11s ease-in-out infinite reverse;
}

.lp-blob-3[b-za8yhhy6f6] {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    top: 45%;
    left: 18%;
    animation: lp-float 7s ease-in-out infinite;
    animation-delay: 2s;
}

@@keyframes lp-float {
    0%[b-za8yhhy6f6], 100%[b-za8yhhy6f6] { transform: translateY(0) scale(1); }
    50%[b-za8yhhy6f6]       { transform: translateY(28px) scale(1.04); }
}

.lp-hero-content[b-za8yhhy6f6] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.3rem;
    max-width: 800px;
    width: 100%;
}

.lp-hero-badge[b-za8yhhy6f6] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.lp-hero-title[b-za8yhhy6f6] {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 18px rgba(0,0,0,0.2);
}

.lp-hero-accent[b-za8yhhy6f6] {
    color: #BBDEFB;
}

.lp-hero-sub[b-za8yhhy6f6] {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.82);
    max-width: 580px;
    line-height: 1.7;
    margin: 0;
}

.lp-hero-cta[b-za8yhhy6f6] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.lp-hero-wave[b-za8yhhy6f6] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    line-height: 0;
}

.lp-hero-wave svg[b-za8yhhy6f6] {
    width: 100%;
    height: 100%;
    display: block;
}

/* ══════════════════════════════════════════
   SECCIONES GENERALES
   ══════════════════════════════════════════ */
.lp-section[b-za8yhhy6f6] {
    padding: 5rem 1rem;
}

.lp-section-alt[b-za8yhhy6f6] {
    background-color: var(--mud-palette-background-grey);
}

.lp-section-hdr[b-za8yhhy6f6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    text-align: center;
}

.lp-section-title[b-za8yhhy6f6] {
    font-weight: 700 !important;
    margin: 0.25rem 0 0 !important;
}

.lp-section-sub[b-za8yhhy6f6] {
    max-width: 580px;
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   TARJETAS DE CARACTERÍSTICAS
   ══════════════════════════════════════════ */
.lp-feat-card[b-za8yhhy6f6] {
    height: 100%;
    border-radius: 18px !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-feat-card:hover[b-za8yhhy6f6] {
    transform: translateY(-7px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.13) !important;
}

.lp-feat-content[b-za8yhhy6f6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.25rem 1.5rem !important;
}

.lp-feat-icon[b-za8yhhy6f6] {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-icon-blue[b-za8yhhy6f6]   { background: linear-gradient(135deg, #1565C0, #1976D2); }
.lp-icon-teal[b-za8yhhy6f6]   { background: linear-gradient(135deg, #00695C, #00897B); }
.lp-icon-purple[b-za8yhhy6f6] { background: linear-gradient(135deg, #6A1B9A, #8E24AA); }

/* ══════════════════════════════════════════
   PLAN DE ESTUDIOS — CHIPS
   ══════════════════════════════════════════ */
.lp-chips-wrap[b-za8yhhy6f6] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 2rem 1rem;
    justify-content: center;
}

/* ══════════════════════════════════════════
   TARJETAS DE CONTACTO
   ══════════════════════════════════════════ */
.lp-contact-card[b-za8yhhy6f6] {
    height: 100%;
    border-radius: 18px !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-contact-card:hover[b-za8yhhy6f6] {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.1) !important;
}

.lp-contact-content[b-za8yhhy6f6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.25rem !important;
}

.lp-contact-icon[b-za8yhhy6f6] {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@@media (max-width: 600px) {
    .lp-hero[b-za8yhhy6f6] {
        min-height: 80vh;
        padding: 3.5rem 1rem 6rem;
    }

    .lp-hero-cta[b-za8yhhy6f6] {
        flex-direction: column;
        width: 100%;
    }

    .lp-section[b-za8yhhy6f6] {
        padding: 3rem 0.5rem;
    }

    .lp-feat-card:hover[b-za8yhhy6f6],
    .lp-contact-card:hover[b-za8yhhy6f6] {
        transform: none;
    }
}

@@media (prefers-reduced-motion: reduce) {
    .lp-blob[b-za8yhhy6f6] {
        animation: none;
    }
}
/* /Components/Layout/LandingLayout.razor.rz.scp.css */
/* ── Wrapper ── */
.ll-wrapper[b-ffy4xxqnff] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Header ── */
.ll-header[b-ffy4xxqnff] {
    position: sticky;
    top: 0;
    z-index: 200;
    background: linear-gradient(90deg, #1565C0 0%, #0D47A1 100%);
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.ll-header.ll-scrolled[b-ffy4xxqnff] {
    background: rgba(13, 71, 161, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.ll-header-inner[b-ffy4xxqnff] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* ── Brand ── */
.ll-brand[b-ffy4xxqnff] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    user-select: none;
}

.ll-logo-box[b-ffy4xxqnff] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.ll-logo-box:hover[b-ffy4xxqnff] { background: rgba(255, 255, 255, 0.26); }

.ll-logo-svg[b-ffy4xxqnff] {
    width: 20px;
    height: 20px;
    color: white;
}

.ll-brand-text[b-ffy4xxqnff] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.ll-brand-name[b-ffy4xxqnff] {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

.ll-brand-sub[b-ffy4xxqnff] {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

/* ── Actions nav ── */
.ll-actions[b-ffy4xxqnff] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

/* Theme toggle */
.ll-btn-theme[b-ffy4xxqnff] {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, transform 0.2s;
    flex-shrink: 0;
}

.ll-btn-theme:hover[b-ffy4xxqnff] {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(18deg);
}

.ll-btn-theme svg[b-ffy4xxqnff] {
    width: 17px;
    height: 17px;
    pointer-events: none;
}

/* CTA button — shared for <a> and <button> */
.ll-btn-cta[b-ffy4xxqnff] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.44rem 0.95rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.50);
    background: transparent;
    color: white;
    font-size: 0.845rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
    white-space: nowrap;
    line-height: 1.4;
}

.ll-btn-cta:hover[b-ffy4xxqnff] {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.80);
    transform: translateY(-1px);
}

.ll-btn-cta svg[b-ffy4xxqnff] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    pointer-events: none;
}

/* ── Body ── */
.ll-body[b-ffy4xxqnff] {
    flex: 1;
}

/* ── Footer ── */
.ll-footer[b-ffy4xxqnff] {
    background: linear-gradient(135deg, #0D47A1 0%, #1A237E 100%);
    padding: 2.5rem 1.5rem;
}

.ll-footer-inner[b-ffy4xxqnff] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    text-align: center;
}

.ll-footer-brand[b-ffy4xxqnff] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
}

.ll-footer-icon[b-ffy4xxqnff] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.75);
}

.ll-footer-links[b-ffy4xxqnff] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
}

.ll-footer-link[b-ffy4xxqnff] {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 0.80rem;
    transition: color 0.18s;
}

.ll-footer-link:hover[b-ffy4xxqnff] { color: rgba(255, 255, 255, 0.92); }

.ll-footer-link svg[b-ffy4xxqnff] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.ll-footer-copy[b-ffy4xxqnff] {
    color: rgba(255, 255, 255, 0.30);
    font-size: 0.70rem;
    margin: 0;
    line-height: 1.5;
}

/* ── Responsive ── */
@@media (max-width: 640px) {
    .ll-header-inner[b-ffy4xxqnff] { padding: 0 1rem; height: 56px; }
    .ll-brand-sub[b-ffy4xxqnff]    { display: none; }
    .ll-btn-cta span[b-ffy4xxqnff] { display: none; }
    .ll-btn-cta[b-ffy4xxqnff]      { padding: 0.44rem 0.6rem; }
    .ll-footer-links[b-ffy4xxqnff] { flex-direction: column; align-items: center; gap: 0.65rem; }
}

/* ── Header ── */
.ll-header[b-ffy4xxqnff] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #1565C0 0%, #0D47A1 100%);
    box-shadow: 0 2px 14px rgba(13, 71, 161, 0.4);
}

.ll-header-inner[b-ffy4xxqnff] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ll-brand[b-ffy4xxqnff] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ll-logo-box[b-ffy4xxqnff] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ll-logo-icon[b-ffy4xxqnff] {
    color: white !important;
    font-size: 1.35rem !important;
}

.ll-brand-text[b-ffy4xxqnff] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ll-brand-name[b-ffy4xxqnff] {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.ll-brand-sub[b-ffy4xxqnff] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
}

.ll-actions[b-ffy4xxqnff] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ll-btn-icon[b-ffy4xxqnff] {
    color: white !important;
}

.ll-btn-login[b-ffy4xxqnff] {
    border-color: rgba(255, 255, 255, 0.65) !important;
    color: white !important;
}

/* ── Main body ── */
.ll-body[b-ffy4xxqnff] {
    flex: 1;
}

/* ── Footer ── */
.ll-footer[b-ffy4xxqnff] {
    background: linear-gradient(135deg, #0D47A1 0%, #1A237E 100%);
    padding: 2rem 1.5rem;
}

.ll-footer-inner[b-ffy4xxqnff] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.ll-footer-brand[b-ffy4xxqnff] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.ll-footer-logo[b-ffy4xxqnff] {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.35rem !important;
}

.ll-footer-contact[b-ffy4xxqnff] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.83rem;
}

.ll-footer-contact span[b-ffy4xxqnff] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.ll-footer-ci[b-ffy4xxqnff] {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
}

.ll-footer-copy[b-ffy4xxqnff] {
    color: rgba(255, 255, 255, 0.42) !important;
    font-size: 0.73rem !important;
}

/* ── Responsive ── */
@@media (max-width: 600px) {
    .ll-header-inner[b-ffy4xxqnff] {
        padding: 0.6rem 1rem;
    }

    .ll-brand-sub[b-ffy4xxqnff] {
        display: none;
    }

    .ll-footer-contact[b-ffy4xxqnff] {
        flex-direction: column;
        gap: 0.65rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-xvtw9md9yt] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-xvtw9md9yt] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-j3aknck9ec] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-j3aknck9ec] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-j3aknck9ec] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-j3aknck9ec] {
    font-size: 1.1rem;
}

.bi[b-j3aknck9ec] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-j3aknck9ec] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-j3aknck9ec] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-j3aknck9ec] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-j3aknck9ec] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-j3aknck9ec] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-j3aknck9ec] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-j3aknck9ec] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-j3aknck9ec] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-j3aknck9ec] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-j3aknck9ec] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-j3aknck9ec] {
        padding-bottom: 1rem;
    }

    .nav-item[b-j3aknck9ec]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-j3aknck9ec]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-j3aknck9ec]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-j3aknck9ec] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-j3aknck9ec] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-j3aknck9ec] {
        display: none;
    }

    .nav-scrollable[b-j3aknck9ec] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-audj9a535u],
.components-reconnect-repeated-attempt-visible[b-audj9a535u],
.components-reconnect-failed-visible[b-audj9a535u],
.components-pause-visible[b-audj9a535u],
.components-resume-failed-visible[b-audj9a535u],
.components-rejoining-animation[b-audj9a535u] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-audj9a535u],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-audj9a535u],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-audj9a535u],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-audj9a535u],
#components-reconnect-modal.components-reconnect-retrying[b-audj9a535u],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-audj9a535u],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-audj9a535u],
#components-reconnect-modal.components-reconnect-failed[b-audj9a535u],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-audj9a535u] {
    display: block;
}


#components-reconnect-modal[b-audj9a535u] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-audj9a535u 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-audj9a535u 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-audj9a535u 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-audj9a535u]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-audj9a535u 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-audj9a535u {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-audj9a535u {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-audj9a535u {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-audj9a535u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-audj9a535u] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-audj9a535u] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-audj9a535u] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-audj9a535u] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-audj9a535u] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-audj9a535u] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-audj9a535u 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-audj9a535u] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-audj9a535u {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Administracion/Alumnado.razor.rz.scp.css */
.titulo-seccion[b-8j4kec6wbn] {
    margin-bottom: 1rem;
}

.titulo-seccion h3[b-8j4kec6wbn] {
    background: linear-gradient(135deg, #594AE2 0%, #7B68EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.titulo-seccion h3 .mud-icon-root[b-8j4kec6wbn] {
    -webkit-text-fill-color: #594AE2;
    color: #594AE2;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-cell {
    padding: 8px 12px !important;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-row {
    height: auto !important;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-chip {
    height: 24px !important;
}

.tabla-clickeable[b-8j4kec6wbn]  .mud-table-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tabla-clickeable[b-8j4kec6wbn]  .mud-table-row:hover {
    background-color: rgba(89, 74, 226, 0.08) !important;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-head .mud-table-cell {
    font-weight: 600;
    background-color: #f5f5f5;
}

.border-bottom[b-8j4kec6wbn] {
    border-bottom: 1px solid #e0e0e0 !important;
}

.border-top[b-8j4kec6wbn] {
    border-top: 1px solid #e0e0e0 !important;
}

.selector-mini[b-8j4kec6wbn] {
    width: 60px !important;
    max-width: 60px !important;
    min-width: 60px !important;
}

.selector-mini[b-8j4kec6wbn]  .mud-input-root {
    font-size: 0.75rem;
}

.selector-mini[b-8j4kec6wbn]  .mud-input {
    padding: 4px 8px !important;
    font-size: 0.75rem !important;
}

.selector-mini[b-8j4kec6wbn]  .mud-select {
    min-height: 28px !important;
}

.selector-mini[b-8j4kec6wbn]  .mud-input-control {
    margin-top: 0 !important;
}

.selector-mini[b-8j4kec6wbn]  .mud-input-root-margin-dense {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.selector-compacto[b-8j4kec6wbn]  .mud-input {
    font-size: 0.75rem;
    padding: 4px 8px;
}

.selector-compacto[b-8j4kec6wbn]  .mud-select {
    min-height: 30px;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label {
    cursor: pointer;
    user-select: none;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label:hover {
    color: #594AE2;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label.mud-direction-asc,
.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label.mud-direction-desc {
    color: #594AE2;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label .mud-button-root {
    opacity: 1 !important;
    visibility: visible !important;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label svg {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label:hover svg {
    opacity: 0.8;
}

.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label.mud-direction-asc svg,
.tabla-compacta[b-8j4kec6wbn]  .mud-table-sort-label.mud-direction-desc svg {
    opacity: 1;
}

.search-panel[b-8j4kec6wbn] {
    margin-bottom: 1.5rem;
}

.search-panel .card[b-8j4kec6wbn] {
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.skeleton[b-8j4kec6wbn] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-8j4kec6wbn 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text[b-8j4kec6wbn] {
    height: 20px;
    width: 100%;
}

.skeleton-button[b-8j4kec6wbn] {
    height: 31px;
    width: 90px;
    border-radius: 4px;
}

@keyframes loading-b-8j4kec6wbn {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
