/* /Components/Componentes/Certificacion/BuscadorAlumnoExamen.razor.rz.scp.css */
/* ============================= */
/* CONTENEDOR */
/* ============================= */

.search-card[b-din1qum2ff] {
    width: 100%;
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05), 0 2px 8px rgba(0,0,0,.03);
    border: 1px solid #eef2f7;
    position: relative;
    overflow: hidden;
}

    /* glow decorativo */

    .search-card[b-din1qum2ff]::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%);
        top: -120px;
        right: -120px;
        pointer-events: none;
    }

/* ============================= */
/* HEADER */
/* ============================= */

.search-header[b-din1qum2ff] {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

    .search-header h3[b-din1qum2ff] {
        margin: 0;
        font-size: 1.55rem;
        font-weight: 800;
        color: #111827;
        letter-spacing: -.5px;
    }

    .search-header span[b-din1qum2ff] {
        margin-top: 6px;
        color: #6b7280;
        font-size: .95rem;
        font-weight: 500;
    }

/* ============================= */
/* BUSCADOR */
/* ============================= */

.search-box[b-din1qum2ff] {
    position: relative;
}

.search-input[b-din1qum2ff] {
    width: 100%;
    height: 58px;
    border: 2px solid transparent;
    background: #f8fafc;
    border-radius: 18px;
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    outline: none;
    transition: all .25s ease;
}

    .search-input[b-din1qum2ff]::placeholder {
        color: #94a3b8;
    }

    .search-input:focus[b-din1qum2ff] {
        background: #fff;
        border-color: #6366f1;
        box-shadow: 0 0 0 5px rgba(99,102,241,.12);
        transform: translateY(-1px);
    }

/* ============================= */
/* LOADING */
/* ============================= */

.loading[b-din1qum2ff] {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #f8fafc;
    color: #6366f1;
    font-weight: 600;
    animation: pulseLoading-b-din1qum2ff 1.5s infinite;
}

@keyframes pulseLoading-b-din1qum2ff {

    0% {
        opacity: .6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

/* ============================= */
/* RESULTADOS */
/* ============================= */

.results[b-din1qum2ff] {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

    /* scrollbar */

    .results[b-din1qum2ff]::-webkit-scrollbar {
        width: 8px;
    }

    .results[b-din1qum2ff]::-webkit-scrollbar-thumb {
        background: #dbe4f0;
        border-radius: 20px;
    }

/* ============================= */
/* ITEM */
/* ============================= */

.result-item[b-din1qum2ff] {
    background: #f8fafc;
    border-radius: 22px;
    padding: 18px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    position: relative;
    overflow: hidden;
}

    .result-item[b-din1qum2ff]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(99,102,241,.06), transparent 70%);
        opacity: 0;
        transition: opacity .25s ease;
    }

    .result-item:hover[b-din1qum2ff] {
        transform: translateY(-4px) scale(1.01);
        border-color: #c7d2fe;
        background: #fff;
        box-shadow: 0 12px 28px rgba(99,102,241,.10), 0 4px 10px rgba(0,0,0,.04);
    }

        .result-item:hover[b-din1qum2ff]::before {
            opacity: 1;
        }

/* ============================= */
/* NOMBRE */
/* ============================= */

.result-name[b-din1qum2ff] {
    font-size: 1.02rem;
    font-weight: 750;
    color: #111827;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

/* ============================= */
/* META */
/* ============================= */

.result-meta[b-din1qum2ff] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

    .result-meta span[b-din1qum2ff] {
        background: #eef2ff;
        color: #4f46e5;
        padding: 7px 12px;
        border-radius: 999px;
        font-size: .82rem;
        font-weight: 700;
        letter-spacing: .2px;
    }

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .search-card[b-din1qum2ff] {
        padding: 20px;
        border-radius: 24px;
    }

    .search-header h3[b-din1qum2ff] {
        font-size: 1.3rem;
    }

    .search-input[b-din1qum2ff] {
        height: 54px;
        font-size: .95rem;
    }

    .result-item[b-din1qum2ff] {
        padding: 16px;
    }

    .result-meta[b-din1qum2ff] {
        gap: 8px;
    }

        .result-meta span[b-din1qum2ff] {
            font-size: .76rem;
        }
}
/* /Components/Componentes/Certificacion/FormSolicitudExamenProfesional.razor.rz.scp.css */
/* =========================================
   WRAPPER
========================================= */

.form-layout[b-0ivikepnhm] {
    width: 100%;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: 32px;
    background: radial-gradient(circle at top left, rgba(59,130,246,.08), transparent 28%), radial-gradient(circle at bottom right, rgba(14,165,233,.08), transparent 24%), #ffffff;
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 20px 40px rgba(15,23,42,.05), 0 4px 14px rgba(15,23,42,.04);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    animation: fadeCard-b-0ivikepnhm .3s ease;
}

@keyframes fadeCard-b-0ivikepnhm {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   LEFT PANEL
========================================= */

.form-left[b-0ivikepnhm] {
    display: flex;
    flex-direction: column;
}

/* =========================================
   PHOTO CARD
========================================= */

.photo-card[b-0ivikepnhm] {
    background: rgba(248,250,252,.92);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 1.2rem;
    border: 1px solid rgba(226,232,240,.9);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-title[b-0ivikepnhm] {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
}

/* =========================================
   OVAL PHOTO AREA
========================================= */

.file-upload[b-0ivikepnhm] {
    width: 170px;
    height: 220px;
    margin: auto;
    border-radius: 50% / 36%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(56,189,248,.18);
    background: linear-gradient(145deg, #f8fafc, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 10px 24px rgba(14,165,233,.10);
    cursor: pointer;
}

    .file-upload:hover[b-0ivikepnhm] {
        transform: translateY(-2px) scale(1.01);
        border-color: rgba(14,165,233,.4);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 18px 35px rgba(14,165,233,.18);
    }

    /* =========================================
   INPUT HIDDEN
========================================= */

    .file-upload input[type=file][b-0ivikepnhm] {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        z-index: 50;
        color: transparent;
        font-size: 0;
    }

        /* CHROME */

        .file-upload input[type=file][b-0ivikepnhm]::-webkit-file-upload-button {
            display: none;
            visibility: hidden;
        }

        /* FIREFOX */

        .file-upload input[type=file][b-0ivikepnhm]::file-selector-button {
            display: none;
            visibility: hidden;
        }

        /* IE */

        .file-upload input[type=file][b-0ivikepnhm]::-ms-browse {
            display: none;
        }

/* =========================================
   PLACEHOLDER
========================================= */

.upload-placeholder[b-0ivikepnhm] {
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    text-align: center;
}

/* =========================================
   ICON
========================================= */

.upload-icon[b-0ivikepnhm] {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin-bottom: .9rem;
    box-shadow: 0 14px 28px rgba(14,165,233,.18);
}

/* =========================================
   TEXTS
========================================= */

.upload-placeholder strong[b-0ivikepnhm] {
    font-size: .92rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .4rem;
}

.upload-placeholder span[b-0ivikepnhm] {
    font-size: .75rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 150px;
    margin-bottom: 1rem;
}

/* =========================================
   VISUAL BUTTON
========================================= */

.upload-button[b-0ivikepnhm] {
    padding: .75rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    color: white;
    font-size: .75rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(14,165,233,.16);
}

/* =========================================
   PREVIEW
========================================= */

.preview-wrapper[b-0ivikepnhm] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.preview-img[b-0ivikepnhm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% / 36%;
    animation: fadePreview-b-0ivikepnhm .25s ease;
}

@keyframes fadePreview-b-0ivikepnhm {

    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================
   OVERLAY
========================================= */

.preview-overlay[b-0ivikepnhm] {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: .9rem;
    background: linear-gradient( to top, rgba(15,23,42,.85), rgba(15,23,42,.15), transparent );
    display: flex;
    justify-content: center;
    align-items: center;
}

    .preview-overlay span[b-0ivikepnhm] {
        color: white;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .3px;
    }

/* =========================================
   RIGHT SIDE
========================================= */

.form-right[b-0ivikepnhm] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* =========================================
   GRID
========================================= */

.select-grid[b-0ivikepnhm] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
}

/* =========================================
   GROUP
========================================= */

.form-group[b-0ivikepnhm] {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

    .form-group label[b-0ivikepnhm] {
        font-size: .84rem;
        font-weight: 800;
        color: #334155;
        padding-left: .2rem;
    }

/* =========================================
   INPUTS
========================================= */

.input-modern[b-0ivikepnhm],
.textarea-modern[b-0ivikepnhm],
select.input-modern[b-0ivikepnhm] {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 18px;
    border: 1px solid #dbeafe;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    font-size: .92rem;
    color: #0f172a;
    outline: none;
    transition: .22s ease;
    box-sizing: border-box;
}

    .input-modern:hover[b-0ivikepnhm],
    .textarea-modern:hover[b-0ivikepnhm],
    select.input-modern:hover[b-0ivikepnhm] {
        border-color: #93c5fd;
    }

    .input-modern:focus[b-0ivikepnhm],
    .textarea-modern:focus[b-0ivikepnhm],
    select.input-modern:focus[b-0ivikepnhm] {
        background: white;
        border-color: #38bdf8;
        box-shadow: 0 0 0 5px rgba(56,189,248,.12);
    }

/* =========================================
   SELECT
========================================= */

select.input-modern[b-0ivikepnhm] {
    appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

/* =========================================
   TEXTAREA
========================================= */

.textarea-modern[b-0ivikepnhm] {
    min-height: 180px;
    resize: vertical;
    line-height: 1.7;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 960px) {

    .form-layout[b-0ivikepnhm] {
        grid-template-columns: 1fr;
        padding: 1.3rem;
    }

    .form-left[b-0ivikepnhm] {
        align-items: center;
    }
}

@media (max-width: 768px) {

    .select-grid[b-0ivikepnhm] {
        grid-template-columns: 1fr;
    }

    .file-upload[b-0ivikepnhm] {
        width: 145px;
        height: 190px;
    }

    .upload-icon[b-0ivikepnhm] {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }

    .textarea-modern[b-0ivikepnhm] {
        min-height: 140px;
    }
}
/* /Components/Componentes/Certificacion/ResumenAlumnoExamen.razor.rz.scp.css */
/* ========================================= */
/* SUMMARY CARD */
/* ========================================= */

.summary-card[b-imfjc4ohv7] {
    position: relative;
    background: linear-gradient( 145deg, #ffffff, #f8fafc );
    border-radius: 30px;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06), 0 2px 10px rgba(15, 23, 42, 0.04);
    animation: summaryFade-b-imfjc4ohv7 .35s ease;
}

    /* ========================================= */
    /* EFECTOS */
    /* ========================================= */

    .summary-card[b-imfjc4ohv7]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(14, 116, 144, 0.03), rgba(59, 130, 246, 0.02) );
        pointer-events: none;
    }

    .summary-card[b-imfjc4ohv7]::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient( 90deg, #0f766e, #0ea5a4, #38bdf8 );
    }

/* ========================================= */
/* ANIMACION */
/* ========================================= */

@keyframes summaryFade-b-imfjc4ohv7 {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================= */
/* TOP */
/* ========================================= */

.summary-top[b-imfjc4ohv7] {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    position: relative;
    z-index: 2;
}

/* ========================================= */
/* AVATAR */
/* ========================================= */

.avatar[b-imfjc4ohv7] {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient( 135deg, #0f766e, #0ea5a4 );
    box-shadow: 0 12px 25px rgba(15, 118, 110, 0.25);
}

/* ========================================= */
/* INFO */
/* ========================================= */

.summary-info[b-imfjc4ohv7] {
    flex: 1;
}

    .summary-info h2[b-imfjc4ohv7] {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
        letter-spacing: -.5px;
    }

/* ========================================= */
/* DATA */
/* ========================================= */

.summary-data[b-imfjc4ohv7] {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-top: .9rem;
}

    .summary-data span[b-imfjc4ohv7] {
        width: fit-content;
        padding: .6rem .9rem;
        border-radius: 14px;
        background: rgba(255,255,255,.7);
        border: 1px solid rgba(15, 23, 42, 0.05);
        font-size: .92rem;
        font-weight: 600;
        color: #475569;
        backdrop-filter: blur(8px);
    }

/* ========================================= */
/* CHIPS */
/* ========================================= */

.chips[b-imfjc4ohv7] {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.chip[b-imfjc4ohv7] {
    padding: .8rem 1.1rem;
    border-radius: 16px;
    font-size: .92rem;
    font-weight: 700;
    transition: all .25s ease;
}

/* ========================================= */
/* CHIP NORMAL */
/* ========================================= */

.chip[b-imfjc4ohv7] {
    background: linear-gradient( 135deg, #f1f5f9, #e2e8f0 );
    color: #334155;
    border: 1px solid #dbeafe;
}

    /* ========================================= */
    /* CHIP SUCCESS */
    /* ========================================= */

    .chip.success[b-imfjc4ohv7] {
        background: linear-gradient( 135deg, #ccfbf1, #99f6e4 );
        color: #115e59;
        border: 1px solid #5eead4;
    }

    /* ========================================= */
    /* CHIP PRIMARY */
    /* ========================================= */

    .chip.primary[b-imfjc4ohv7] {
        background: linear-gradient( 135deg, #dbeafe, #bfdbfe );
        color: #1d4ed8;
        border: 1px solid #93c5fd;
    }

    /* ========================================= */
    /* HOVER */
    /* ========================================= */

    .chip:hover[b-imfjc4ohv7] {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    }

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 768px) {

    .summary-card[b-imfjc4ohv7] {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .summary-top[b-imfjc4ohv7] {
        flex-direction: column;
        align-items: flex-start;
    }

    .avatar[b-imfjc4ohv7] {
        width: 74px;
        height: 74px;
        min-width: 74px;
        border-radius: 20px;
        font-size: 1.7rem;
    }

    .summary-info h2[b-imfjc4ohv7] {
        font-size: 1.2rem;
    }

    .summary-data span[b-imfjc4ohv7] {
        width: 100%;
    }

    .chips[b-imfjc4ohv7] {
        gap: .7rem;
    }

    .chip[b-imfjc4ohv7] {
        width: 100%;
        text-align: center;
    }
}
/* /Components/Componentes/Certificacion/StepKardex.razor.rz.scp.css */
.kardex-container[b-cpfz4paypc] {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

/* =========================================
   GRID SEMESTRES
========================================= */
.semestres-grid[b-cpfz4paypc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

/* =========================================
   CARD SEMESTRE
========================================= */
.sem-card[b-cpfz4paypc] {
    position: relative;
    padding: 18px;
    border-radius: 18px;
    cursor: pointer;
    text-align: center;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 10px 25px rgba(15,23,42,0.06);
    transition: all .25s ease;
}

    .sem-card:hover[b-cpfz4paypc] {
        transform: translateY(-3px);
        box-shadow: 0 16px 35px rgba(59,130,246,0.12);
    }

    .sem-card.active[b-cpfz4paypc] {
        background: linear-gradient(135deg,#2563eb,#3b82f6);
        color: white;
        transform: scale(1.04);
        box-shadow: 0 18px 40px rgba(37,99,235,.35);
    }

    .sem-card.success[b-cpfz4paypc] {
        background: linear-gradient(135deg,#10b981,#34d399);
        color: white;
    }

    .sem-card.locked[b-cpfz4paypc] {
        opacity: .35;
        pointer-events: none;
        filter: grayscale(.2);
    }

.sem-num[b-cpfz4paypc] {
    font-size: 15px;
    font-weight: 700;
}

/* =========================================
   FORM CARD
========================================= */
.form-card[b-cpfz4paypc] {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 20px 45px rgba(15,23,42,.08);
}

    .form-card h4[b-cpfz4paypc] {
        margin-bottom: 20px;
        font-size: 22px;
        font-weight: 700;
        color: #0f172a;
    }

/* =========================================
   SELECT
========================================= */
.form-group[b-cpfz4paypc] {
    margin-bottom: 24px;
}

    .form-group label[b-cpfz4paypc] {
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
        font-weight: 600;
        color: #475569;
    }

.select[b-cpfz4paypc] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #dbe4f0;
    background: white;
    font-size: 14px;
    transition: .2s;
}

    .select:focus[b-cpfz4paypc] {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59,130,246,.12);
    }

/* =========================================
   TABLA
========================================= */
.tabla[b-cpfz4paypc] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =========================================
   FILA
========================================= */
.fila[b-cpfz4paypc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(248,250,252,.9);
    border: 1px solid #e2e8f0;
    transition: .2s;
}

    .fila:hover[b-cpfz4paypc] {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }

/* =========================================
   INFO
========================================= */
.info-materia[b-cpfz4paypc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.nombre[b-cpfz4paypc] {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.clave[b-cpfz4paypc] {
    font-size: 12px;
    color: #94a3b8;
}

/* =========================================
   CALIFICACIONES
========================================= */
.calif[b-cpfz4paypc] {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* =========================================
   SEGMENT
========================================= */
.cal-segment[b-cpfz4paypc] {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #dbe4f0;
    background: white;
    box-shadow: inset 0 1px 2px rgba(15,23,42,.04);
}

/* =========================================
   OPTION
========================================= */
.cal-option[b-cpfz4paypc] {
    position: relative;
    width: 52px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
    border-right: 1px solid #e2e8f0;
    font-weight: 700;
    color: #334155;
    background: white;
}

    .cal-option:last-child[b-cpfz4paypc] {
        border-right: none;
    }

    .cal-option:hover[b-cpfz4paypc] {
        background: #eff6ff;
    }

    .cal-option.selected[b-cpfz4paypc] {
        background: linear-gradient(135deg,#2563eb,#3b82f6);
        color: white;
        z-index: 2;
        transform: scale(1.06);
        box-shadow: 0 10px 24px rgba(37,99,235,.28);
    }

/* ocultar radio real */
.radio-hidden[b-cpfz4paypc] {
    display: none;
}

.cal-num[b-cpfz4paypc] {
    pointer-events: none;
    font-size: 14px;
}

/* =========================================
   BOTÓN
========================================= */
.btn-save[b-cpfz4paypc] {
    margin-top: 24px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 14px 28px rgba(37,99,235,.28);
}

    .btn-save:hover[b-cpfz4paypc] {
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(37,99,235,.35);
    }

    .btn-save:disabled[b-cpfz4paypc] {
        opacity: .45;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {

    .fila[b-cpfz4paypc] {
        flex-direction: column;
        align-items: flex-start;
    }

    .calif[b-cpfz4paypc] {
        width: 100%;
        justify-content: flex-end;
    }
}



.empty-wrapper[b-cpfz4paypc] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.empty-card[b-cpfz4paypc] {
    width: 420px;
    padding: 32px;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    animation: pulseShadow-b-cpfz4paypc 2.5s infinite ease-in-out;
    transition: transform 0.3s ease;
}

    .empty-card:hover[b-cpfz4paypc] {
        transform: translateY(-4px);
    }

.empty-icon[b-cpfz4paypc] {
    font-size: 64px;
    margin-bottom: 12px;
    animation: floatIcon-b-cpfz4paypc 2s ease-in-out infinite;
}

.subtext[b-cpfz4paypc] {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}

.btn-home[b-cpfz4paypc] {
    margin-top: 18px;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    background: #1976d2;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

    .btn-home:hover[b-cpfz4paypc] {
        background: #125aa0;
    }

@keyframes pulseShadow-b-cpfz4paypc {
    0% {
        box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    }

    50% {
        box-shadow: 0 10px 30px rgba(25,118,210,0.25);
    }

    100% {
        box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    }
}

@keyframes floatIcon-b-cpfz4paypc {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}
/* /Components/Componentes/Certificacion/StepPlanCarrera.razor.rz.scp.css */
/* FORM GROUP */
.form-group[b-byaf3t3hzw] {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label[b-byaf3t3hzw] {
        font-size: 13px;
        font-weight: 600;
        color: #334155;
    }

/* SELECT MODERNO */
.select-modern[b-byaf3t3hzw] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    transition: 0.25s;
}

    .select-modern:focus[b-byaf3t3hzw] {
        outline: none;
        border-color: #6366f1;
        box-shadow: 0 0 0 2px rgba(99,102,241,0.15);
    }

/* 🔥 INPUT MODERNO */
.input-modern[b-byaf3t3hzw] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    transition: 0.25s;
    color: #0f172a;
}

    .input-modern:focus[b-byaf3t3hzw] {
        outline: none;
        border-color: #6366f1;
        box-shadow: 0 0 0 2px rgba(99,102,241,0.15);
    }

    /* DATE */
    .input-modern[type="date"][b-byaf3t3hzw] {
        color-scheme: light;
    }

/* EXTRA FIELDS */
.extra-fields[b-byaf3t3hzw] {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 15px;
    padding: 18px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

/* LOADING */
.mini-loading[b-byaf3t3hzw] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-top: 8px;
}

.mini-spinner[b-byaf3t3hzw] {
    width: 14px;
    height: 14px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #6366f1;
    border-radius: 50%;
    animation: spin-b-byaf3t3hzw 0.7s linear infinite;
}

@keyframes spin-b-byaf3t3hzw {
    to {
        transform: rotate(360deg);
    }
}

/* RESULT BOX */
.result-box[b-byaf3t3hzw] {
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #f8fafc;
    border-left: 4px solid #6366f1;
}

    .result-box div[b-byaf3t3hzw] {
        margin-bottom: 6px;
        font-size: 14px;
        color: #334155;
    }

        .result-box div:last-child[b-byaf3t3hzw] {
            margin-bottom: 0;
        }

/* ANIMACIONES */
.fade-in[b-byaf3t3hzw] {
    animation: fadeIn-b-byaf3t3hzw 0.3s ease;
}

.slide-in[b-byaf3t3hzw] {
    animation: slideUp-b-byaf3t3hzw 0.25s ease;
}

@keyframes fadeIn-b-byaf3t3hzw {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-byaf3t3hzw {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width: 768px) {

    .extra-fields[b-byaf3t3hzw] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Componentes/Certificacion/StepResumen.razor.rz.scp.css */
.resumen-container[b-8nbn93bbio] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

/* =========================
   HEADER
========================= */

.resumen-header[b-8nbn93bbio] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 35px rgba(15,23,42,0.05);
}

    .resumen-header h2[b-8nbn93bbio] {
        margin: 0;
        font-size: 26px;
        font-weight: 700;
        color: #0f172a;
    }

    .resumen-header p[b-8nbn93bbio] {
        margin-top: 6px;
        color: #64748b;
        font-size: 14px;
    }

.status-badge[b-8nbn93bbio] {
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(34,197,94,0.25);
}

/* =========================
   CARD
========================= */

.card-resumen[b-8nbn93bbio] {
    background: white;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

/* TITLE */

.card-title[b-8nbn93bbio] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

    .card-title h4[b-8nbn93bbio] {
        margin: 0;
        font-size: 18px;
        color: #0f172a;
    }

.icon[b-8nbn93bbio] {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* =========================
   INFO GRID
========================= */

.info-grid[b-8nbn93bbio] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 18px;
}

.info-item[b-8nbn93bbio] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 16px;
}

.label[b-8nbn93bbio] {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.value[b-8nbn93bbio] {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

/* =========================
   SEMESTRES
========================= */

.semestre-card[b-8nbn93bbio] {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.sem-header[b-8nbn93bbio] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: linear-gradient(135deg,#f8fafc,#f1f5f9);
}

.sem-left[b-8nbn93bbio] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sem-circle[b-8nbn93bbio] {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.sem-title[b-8nbn93bbio] {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.sem-cycle[b-8nbn93bbio] {
    font-size: 13px;
    color: #64748b;
}

.sem-ok[b-8nbn93bbio] {
    background: #dcfce7;
    color: #166534;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* =========================
   TABLA
========================= */

.tabla-kardex[b-8nbn93bbio] {
    display: flex;
    flex-direction: column;
}

.tabla-header[b-8nbn93bbio],
.tabla-row[b-8nbn93bbio] {
    display: grid;
    grid-template-columns: 160px 1fr 120px;
    gap: 15px;
    align-items: center;
}

.tabla-header[b-8nbn93bbio] {
    padding: 14px 18px;
    background: #f8fafc;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.tabla-row[b-8nbn93bbio] {
    padding: 16px 18px;
    border-top: 1px solid #f1f5f9;
    transition: 0.2s ease;
}

    .tabla-row:hover[b-8nbn93bbio] {
        background: #f8fafc;
    }

.clave[b-8nbn93bbio] {
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.materia[b-8nbn93bbio] {
    color: #0f172a;
    font-weight: 500;
}

.center[b-8nbn93bbio] {
    display: flex;
    justify-content: center;
}

/* =========================
   CALIFICACIÓN
========================= */

.calificacion[b-8nbn93bbio] {
    min-width: 46px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.aprobado[b-8nbn93bbio] {
    background: #dcfce7;
    color: #166534;
}

.reprobado[b-8nbn93bbio] {
    background: #fee2e2;
    color: #991b1b;
}

/* =========================
   EMPTY
========================= */

.empty-state[b-8nbn93bbio] {
    padding: 30px;
    border-radius: 18px;
    background: #f8fafc;
    text-align: center;
    color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .tabla-header[b-8nbn93bbio],
    .tabla-row[b-8nbn93bbio] {
        grid-template-columns: 1fr;
    }

    .center[b-8nbn93bbio] {
        justify-content: flex-start;
    }

    .resumen-header[b-8nbn93bbio] {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}
/* /Components/Componentes/Certificacion/StepTipoDocumento.razor.rz.scp.css */
body[b-dcbeh2ouni] {
    font-family: "Segoe UI", sans-serif;
    background: #f5f7fb;
}

/* CONTENEDOR */
.wizard-container[b-dcbeh2ouni] {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.wizard-card[b-dcbeh2ouni] {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* TITULO */
.step-container h3[b-dcbeh2ouni] {
    margin-bottom: 15px;
}

/* DOC CARDS */
.doc-cards[b-dcbeh2ouni] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 25px;
}

.doc-card[b-dcbeh2ouni] {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

    .doc-card:hover[b-dcbeh2ouni] {
        transform: translateY(-4px);
        border-color: #3b82f6;
    }

    .doc-card.active[b-dcbeh2ouni] {
        background: #eff6ff;
        border-color: #2563eb;
        transform: scale(1.05);
    }

/* INPUT */
.curp-input.small[b-dcbeh2ouni] {
    width: 240px;
    padding: 8px;
    letter-spacing: 3px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
    margin-top: 10px;
}

/* TIMELINE */
.search-flow[b-dcbeh2ouni] {
    margin-top: 20px;
    padding-left: 20px;
    border-left: 2px solid #e2e8f0;
}

.flow-step[b-dcbeh2ouni] {
    position: relative;
    margin-bottom: 10px;
    padding-left: 10px;
}

    .flow-step[b-dcbeh2ouni]::before {
        content: "";
        position: absolute;
        left: -7px;
        top: 6px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cbd5f5;
    }

    .flow-step.loading[b-dcbeh2ouni]::before {
        background: #3b82f6;
        animation: pulse-b-dcbeh2ouni 1s infinite;
    }

    .flow-step.success[b-dcbeh2ouni]::before {
        background: #22c55e;
    }

    .flow-step.error[b-dcbeh2ouni]::before {
        background: #ef4444;
    }

@keyframes pulse-b-dcbeh2ouni {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(0.8);
    }
}

/* RESULTADO */
.result-box[b-dcbeh2ouni] {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    border-left: 5px solid #2563eb;
}

.error-box[b-dcbeh2ouni] {
    border-left: 5px solid red;
}

/* BADGE */
.badge[b-dcbeh2ouni] {
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
}

    .badge.success[b-dcbeh2ouni] {
        background: #dcfce7;
        color: #166534;
    }

    .badge.warning[b-dcbeh2ouni] {
        background: #fef3c7;
        color: #92400e;
    }

    .badge.danger[b-dcbeh2ouni] {
        background: #fee2e2;
        color: #991b1b;
    }
/* /Components/Componentes/Evaluaciones/EvaluacionDrawer.razor.rz.scp.css */
/* =========================================
   OVERLAY
========================================= */

.drawer-overlay[b-3ie1l2ddd0] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .35);
    backdrop-filter: blur(4px);
    z-index: 999;
    animation: overlayIn-b-3ie1l2ddd0 .25s ease;
}

/* =========================================
   DRAWER
========================================= */

.drawer[b-3ie1l2ddd0] {
    position: fixed;
    top: 0;
    right: -760px;
    width: 100%;
    max-width: 720px;
    height: 100dvh;
    max-height: 100dvh;
    background: #f8fafc;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: right .45s cubic-bezier(.22,1,.36,1);
    box-shadow: -10px 0 40px rgba(15,23,42,.12);
}

    .drawer.open[b-3ie1l2ddd0] {
        right: 0;
    }

/* =========================================
   HEADER
========================================= */

.drawer-header[b-3ie1l2ddd0] {
    flex-shrink: 0;
    padding: 22px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.student-info[b-3ie1l2ddd0] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
}

.student-avatar[b-3ie1l2ddd0] {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(14,165,233,.25);
}

.drawer-header h2[b-3ie1l2ddd0] {
    margin: 0;
    color: #0f172a;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.4;
    word-break: break-word;
}

.student-meta[b-3ie1l2ddd0] {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.matricula-badge[b-3ie1l2ddd0],
.status-badge[b-3ie1l2ddd0] {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
}

.matricula-badge[b-3ie1l2ddd0] {
    background: #e0f2fe;
    color: #0369a1;
}

.status-badge.success[b-3ie1l2ddd0] {
    background: #dcfce7;
    color: #166534;
}

.status-badge.warning[b-3ie1l2ddd0] {
    background: #fef3c7;
    color: #92400e;
}

.close-btn[b-3ie1l2ddd0] {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: none;
    border-radius: 14px;
    background: white;
    color: #334155;
    cursor: pointer;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(15,23,42,.08);
    transition: all .25s ease;
}

    .close-btn:hover[b-3ie1l2ddd0] {
        transform: rotate(90deg);
    }

/* =========================================
   SUMMARY
========================================= */

.summary-row[b-3ie1l2ddd0] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.summary-item[b-3ie1l2ddd0] {
    padding: 8px 12px;
    border-radius: 14px;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .summary-item.success[b-3ie1l2ddd0] {
        background: #dcfce7;
        color: #166534;
    }

    .summary-item.danger[b-3ie1l2ddd0] {
        background: #fee2e2;
        color: #991b1b;
    }

    .summary-item.warning[b-3ie1l2ddd0] {
        background: #fef3c7;
        color: #92400e;
    }

/* =========================================
   PROGRESS
========================================= */

.progress-wrapper[b-3ie1l2ddd0] {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
    margin-top: 16px;
}

.progress-bar[b-3ie1l2ddd0] {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    transition: width .35s ease;
}

.progress-text[b-3ie1l2ddd0] {
    margin-top: 8px;
    font-size: .76rem;
    color: #64748b;
    font-weight: 700;
}

/* =========================================
   BODY
========================================= */

.subjects-container[b-3ie1l2ddd0] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

    .subjects-container[b-3ie1l2ddd0]::-webkit-scrollbar {
        width: 7px;
    }

    .subjects-container[b-3ie1l2ddd0]::-webkit-scrollbar-thumb {
        background: rgba(148,163,184,.4);
        border-radius: 999px;
    }

        .subjects-container[b-3ie1l2ddd0]::-webkit-scrollbar-thumb:hover {
            background: rgba(100,116,139,.55);
        }

/* =========================================
   CARD
========================================= */

.subject-card[b-3ie1l2ddd0] {
    flex-shrink: 0;
    background: white;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: cardIn-b-3ie1l2ddd0 .28s ease;
}

    .subject-card:hover[b-3ie1l2ddd0] {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(15,23,42,.08);
    }

.success-card[b-3ie1l2ddd0] {
    border-color: rgba(34,197,94,.18);
}

.danger-card[b-3ie1l2ddd0] {
    border-color: rgba(239,68,68,.18);
}

.critical-card[b-3ie1l2ddd0] {
    border: 2px solid rgba(239,68,68,.25);
    background: linear-gradient( 180deg, rgba(254,242,242,.75), #ffffff );
    animation: pulseDanger-b-3ie1l2ddd0 2s infinite;
}

.subject-top[b-3ie1l2ddd0] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.subject-card h4[b-3ie1l2ddd0] {
    margin: 0;
    color: #0f172a;
    font-size: .96rem;
    font-weight: 800;
    line-height: 1.45;
    word-break: break-word;
}

.subject-key[b-3ie1l2ddd0] {
    display: inline-block;
    margin-top: 6px;
    color: #64748b;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .4px;
}

.subject-status[b-3ie1l2ddd0] {
    height: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
}

    .subject-status.pending[b-3ie1l2ddd0] {
        background: #fef3c7;
        color: #92400e;
    }

/* =========================================
   ALERTS
========================================= */

.alert-box[b-3ie1l2ddd0] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.5;
}

    .alert-box.warning[b-3ie1l2ddd0] {
        background: #fef3c7;
        color: #92400e;
    }

    .alert-box.danger[b-3ie1l2ddd0] {
        background: #fee2e2;
        color: #991b1b;
    }

    .alert-box.critical[b-3ie1l2ddd0] {
        background: linear-gradient( 135deg, #fee2e2, #fecaca );
        color: #7f1d1d;
        border: 1px solid rgba(239,68,68,.18);
    }

/* =========================================
   SECTION TITLE
========================================= */

.section-title[b-3ie1l2ddd0] {
    margin-bottom: 12px;
    color: #334155;
    font-size: .82rem;
    font-weight: 700;
}

/* =========================================
   RADIOS
========================================= */

.radio-group[b-3ie1l2ddd0] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.grade-option input[b-3ie1l2ddd0] {
    position: absolute;
    opacity: 0;
}

.grade-option[b-3ie1l2ddd0] {
    cursor: pointer;
}

    .grade-option span[b-3ie1l2ddd0] {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        background: #f1f5f9;
        border: 2px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #334155;
        font-weight: 800;
        font-size: .9rem;
        transition: all .2s ease;
    }

    .grade-option:hover span[b-3ie1l2ddd0] {
        background: #e2e8f0;
        transform: translateY(-2px);
    }

    .grade-option input:checked + span[b-3ie1l2ddd0] {
        background: linear-gradient( 135deg, #0ea5e9, #0284c7 );
        color: white;
        box-shadow: 0 8px 18px rgba(14,165,233,.22);
        transform: scale(1.05);
    }

/* =========================================
   ATTENDANCE
========================================= */

.attendance-section[b-3ie1l2ddd0] {
    margin-top: 8px;
}

.attendance-header[b-3ie1l2ddd0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.attendance-badge[b-3ie1l2ddd0] {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
}

    .attendance-badge.success[b-3ie1l2ddd0] {
        background: #dcfce7;
        color: #166534;
    }

    .attendance-badge.danger[b-3ie1l2ddd0] {
        background: #fee2e2;
        color: #991b1b;
    }

.attendance-input-wrapper[b-3ie1l2ddd0] {
    position: relative;
    width: 130px;
    max-width: 100%;
}

.attendance-input[b-3ie1l2ddd0] {
    width: 100%;
    height: 46px;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    padding: 0 14px;
    font-size: .95rem;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    transition: all .2s ease;
}

    .attendance-input:focus[b-3ie1l2ddd0] {
        border-color: #0ea5e9;
        box-shadow: 0 0 0 4px rgba(14,165,233,.12);
    }

.percentage-symbol[b-3ie1l2ddd0] {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #64748b;
    font-weight: 800;
    pointer-events: none;
}

.input-danger[b-3ie1l2ddd0] {
    border-color: #ef4444 !important;
    background: #fef2f2;
    color: #991b1b;
}

    .input-danger:focus[b-3ie1l2ddd0] {
        border-color: #ef4444 !important;
        box-shadow: 0 0 0 4px rgba(239,68,68,.12) !important;
    }

/* =========================================
   VALIDATION
========================================= */

.validation-text[b-3ie1l2ddd0] {
    margin-top: 8px;
    color: #dc2626;
    font-size: .76rem;
    font-weight: 700;
}

/* =========================================
   FOOTER BUTTON
========================================= */

.save-btn[b-3ie1l2ddd0] {
    flex-shrink: 0;
    margin: 0 18px 18px;
    min-height: 56px;
    border: none;
    border-radius: 18px;
    background: linear-gradient( 135deg, #0ea5e9, #0284c7 );
    color: white;
    font-size: .92rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(14,165,233,.22);
    transition: transform .25s ease, box-shadow .25s ease;
    position: sticky;
    bottom: 18px;
    z-index: 10;
}

    .save-btn:hover[b-3ie1l2ddd0] {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(14,165,233,.32);
    }

    .save-btn:disabled[b-3ie1l2ddd0] {
        opacity: .6;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none;
    }

/* =========================================
   EMPTY
========================================= */

.empty-state[b-3ie1l2ddd0] {
    padding: 60px 20px;
    text-align: center;
    color: #64748b;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes cardIn-b-3ie1l2ddd0 {

    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseDanger-b-3ie1l2ddd0 {

    0% {
        box-shadow: 0 0 0 0 rgba(239,68,68,.18);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(239,68,68,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239,68,68,0);
    }
}

@keyframes overlayIn-b-3ie1l2ddd0 {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .drawer[b-3ie1l2ddd0] {
        max-width: 100%;
    }

    .drawer-header[b-3ie1l2ddd0] {
        padding: 18px;
    }

    .student-info[b-3ie1l2ddd0] {
        gap: 12px;
    }

    .student-avatar[b-3ie1l2ddd0] {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
    }

    .drawer-header h2[b-3ie1l2ddd0] {
        font-size: 1rem;
    }

    .subjects-container[b-3ie1l2ddd0] {
        padding: 14px;
        gap: 14px;
    }

    .subject-card[b-3ie1l2ddd0] {
        padding: 16px;
        border-radius: 20px;
    }

    .subject-top[b-3ie1l2ddd0] {
        flex-direction: column;
        gap: 12px;
    }

    .grade-option span[b-3ie1l2ddd0] {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .attendance-header[b-3ie1l2ddd0] {
        flex-direction: column;
        align-items: flex-start;
    }

    .attendance-input-wrapper[b-3ie1l2ddd0] {
        width: 100%;
    }

    .summary-item[b-3ie1l2ddd0] {
        width: 100%;
        justify-content: center;
    }

    .save-btn[b-3ie1l2ddd0] {
        margin: 0 14px 14px;
    }
}
/* /Components/Componentes/Inscripcion/DrawlerInscripcion.razor.rz.scp.css */
.drawer-overlay[b-ph9nhphmjf] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

.drawer[b-ph9nhphmjf] {
    position: fixed;
    top: 0;
    right: -520px;
    width: 500px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: 0.35s ease;
    box-shadow: -10px 0 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

    .drawer.open[b-ph9nhphmjf] {
        right: 0;
    }

    .drawer.open[b-ph9nhphmjf] {
        right: 0;
    }

/* HEADER */
.drawer-header[b-ph9nhphmjf] {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BODY */
.drawer-body[b-ph9nhphmjf] {
    padding: 16px;
    overflow-y: auto;
}

/* INFO */
.info-box[b-ph9nhphmjf] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: #6b7280;
}

/* SEARCH */
.search-box[b-ph9nhphmjf] {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}

/* LIST */
.alumnos-list[b-ph9nhphmjf] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alumno-item[b-ph9nhphmjf] {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #f3f4f6;
}

    .alumno-item strong[b-ph9nhphmjf] {
        font-size: 14px;
    }

    .alumno-item small[b-ph9nhphmjf] {
        display: block;
        color: #6b7280;
        font-size: 12px;
    }

.curp[b-ph9nhphmjf] {
    font-size: 11px;
    color: #9ca3af;
}

/* CLOSE */
.close-btn[b-ph9nhphmjf] {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}




.right-info[b-ph9nhphmjf] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

/* 🔖 BASE BADGE */
.badge[b-ph9nhphmjf] {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* 🔴 INACTIVO */
.badge-danger[b-ph9nhphmjf] {
    background: #fee2e2;
    color: #991b1b;
}

/* 🟢 ACTIVO (BASE) */
.badge-success-light[b-ph9nhphmjf] {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: pulseSoft-b-ph9nhphmjf 2.8s infinite;
}


@keyframes pulseSoft-b-ph9nhphmjf {
    0% {
        box-shadow: 0 0 0 0 rgba(16,185,129,0.25);
    }

    70% {
        box-shadow: 0 0 0 5px rgba(16,185,129,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16,185,129,0);
    }
}

.switch input:disabled + .slider[b-ph9nhphmjf] {
    opacity: 0.5;
    cursor: not-allowed;
}

    .switch input:disabled + .slider[b-ph9nhphmjf]:before {
        background: #e5e7eb;
    }





/* OVERLAY */
.modal-overlay[b-ph9nhphmjf] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10vh;
    z-index: 99999;
}

/* MODAL */
.modal-box[b-ph9nhphmjf] {
    background: white;
    width: 460px;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: modalDrop-b-ph9nhphmjf 0.25s ease;
}

/* TITLE */
.modal-title-danger[b-ph9nhphmjf] {
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 10px;
}

/* TEXT */
.modal-text[b-ph9nhphmjf] {
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
}

/* LABEL */
.modal-label[b-ph9nhphmjf] {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* SELECT */
.modal-select[b-ph9nhphmjf] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 13px;
    background: white;
    outline: none;
    transition: 0.2s;
}

    .modal-select:focus[b-ph9nhphmjf] {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
    }

/* TEXTAREA */
.modal-input[b-ph9nhphmjf] {
    width: 100%;
    min-height: 90px;
    margin-top: 5px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 13px;
    outline: none;
}

/* ACTIONS */
.modal-actions[b-ph9nhphmjf] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

/* BUTTONS */
.btn-secondary[b-ph9nhphmjf] {
    background: #e5e7eb;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-danger[b-ph9nhphmjf] {
    background: #dc2626;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-danger:hover[b-ph9nhphmjf] {
        background: #b91c1c;
    }

    .btn-danger:disabled[b-ph9nhphmjf] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* ANIMATION */
@keyframes modalDrop-b-ph9nhphmjf {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.btn-secondary[b-ph9nhphmjf] {
    background: #e5e7eb;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-danger[b-ph9nhphmjf] {
    background: #dc2626;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

    .btn-danger:hover[b-ph9nhphmjf] {
        background: #b91c1c;
    }



@media (max-width: 768px) {
    .drawer[b-ph9nhphmjf] {
        width: 100%;
        right: -100%;
    }
}



.btn-baja[b-ph9nhphmjf] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #b91c1c;
    background: #fff1f2;
    border: 1px solid rgba(185, 28, 28, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.9;
}

    .btn-baja:hover[b-ph9nhphmjf] {
        background: #ffe4e6;
        border-color: rgba(185, 28, 28, 0.3);
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(185, 28, 28, 0.12);
        opacity: 1;
    }

    .btn-baja:active[b-ph9nhphmjf] {
        transform: scale(0.97);
        box-shadow: none;
    }

@keyframes popIn-b-ph9nhphmjf {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}



.btn-danger[b-ph9nhphmjf] {
    opacity: 0.5;
    cursor: not-allowed;
    transition: all .3s ease;
}

    .btn-danger.active[b-ph9nhphmjf] {
        opacity: 1;
        cursor: pointer;
        transform: scale(1.03);
        }


.success-box[b-ph9nhphmjf] {
    text-align: center;
    padding: 20px;
    animation: fadeIn-b-ph9nhphmjf 0.3s ease;
}

.success-icon[b-ph9nhphmjf] {
    font-size: 50px;
    color: #22c55e;
    margin-bottom: 10px;
    animation: pop-b-ph9nhphmjf 0.3s ease;
}

.success-title[b-ph9nhphmjf] {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.success-text[b-ph9nhphmjf] {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* botón activo */
.btn-danger[b-ph9nhphmjf] {
    opacity: 0.5;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

    .btn-danger.active[b-ph9nhphmjf] {
        opacity: 1;
        cursor: pointer;
        transform: scale(1.05);
    }

/* animaciones */
@keyframes pop-b-ph9nhphmjf {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn-b-ph9nhphmjf {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* /Components/Componentes/Inscripcion/FormInscripcion.razor.rz.scp.css */
/* FORM CONTAINER */
.form-container[b-1lebpvh7qi] {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}

/* TÍTULO */
.form-title[b-1lebpvh7qi] {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

/* GRID */
.form-grid[b-1lebpvh7qi] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .form-grid[b-1lebpvh7qi] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .form-grid[b-1lebpvh7qi] {
        grid-template-columns: 1fr;
    }
}

/* FORM GROUP */
.form-group[b-1lebpvh7qi] {
    position: relative;
    width: 100%;
}

    /* INPUTS (🔥 FIX PRINCIPAL) */
    .form-group input[b-1lebpvh7qi],
    .form-group select[b-1lebpvh7qi] {
        width: 100%; /* ✅ FULL WIDTH */
        padding: 12px 10px 6px;
        border-radius: 10px;
        border: 1px solid #d1d5db;
        background: #f9fafb;
        font-size: 14px;
        transition: all 0.2s ease;
        box-sizing: border-box;
    }

        /* FOCUS */
        .form-group input:focus[b-1lebpvh7qi],
        .form-group select:focus[b-1lebpvh7qi] {
            outline: none;
            border-color: #00bcd4;
            box-shadow: 0 0 6px rgba(0, 188, 212, 0.25);
        }

    /* LABEL FLOAT */
    .form-group label[b-1lebpvh7qi] {
        position: absolute;
        left: 10px;
        top: 11px;
        font-size: 13px;
        color: #6b7280;
        transition: 0.2s ease;
        pointer-events: none;
    }

    /* FLOAT EFFECT */
    .form-group input:focus + label[b-1lebpvh7qi],
    .form-group input:not(:placeholder-shown) + label[b-1lebpvh7qi],
    .form-group select:focus + label[b-1lebpvh7qi],
    .form-group select:not([value=""]) + label[b-1lebpvh7qi] {
        top: 3px;
        font-size: 11px;
        color: #00bcd4;
    }

/* DISABLED */
input:disabled[b-1lebpvh7qi],
select:disabled[b-1lebpvh7qi] {
    background: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.85;
}

/* EDAD BADGE */
.edad-badge[b-1lebpvh7qi] {
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

/* DATE */
.date-group[b-1lebpvh7qi] {
    position: relative;
}

.calendar-icon[b-1lebpvh7qi] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.6;
}

/* MENSAJES */
.container-message[b-1lebpvh7qi] {
    margin-top: 8px;
}

/* STATUS */
.status-success[b-1lebpvh7qi],
.status-info[b-1lebpvh7qi],
.status-error[b-1lebpvh7qi],
.status-secondary[b-1lebpvh7qi] {
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 13px;
}

.status-success[b-1lebpvh7qi] {
    background: #d1fae5;
    color: #065f46;
}

.status-info[b-1lebpvh7qi] {
    background: #cff4fc;
    color: #055160;
}

.status-error[b-1lebpvh7qi] {
    background: #fee2e2;
    color: #b91c1c;
}

.status-secondary[b-1lebpvh7qi] {
    background: #f3f4f6;
    color: #374151;
}

/* SPINNER */
.spinner-real[b-1lebpvh7qi] {
    width: 16px;
    height: 16px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin-b-1lebpvh7qi 0.8s linear infinite;
}

@keyframes spin-b-1lebpvh7qi {
    to {
        transform: rotate(360deg);
    }
}

/* MENSAJE GENERAL */
.mensaje-general[b-1lebpvh7qi] {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #3b82f6;
    padding: 8px;
}

/* LOADER PASOS */
.pasos-loader[b-1lebpvh7qi] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.paso[b-1lebpvh7qi] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    transition: all 0.25s ease;
}

    .paso.activo[b-1lebpvh7qi] {
        color: #00bcd4;
        font-weight: 600;
    }

/* DOTS */
.loader-dot[b-1lebpvh7qi] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00bcd4;
    animation: pulse-b-1lebpvh7qi 1s infinite;
}

.idle-dot[b-1lebpvh7qi] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
}

.check[b-1lebpvh7qi] {
    color: #10b981;
    font-weight: bold;
}

/* ANIMACIONES */
@keyframes pulse-b-1lebpvh7qi {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* ERROR ANIMADO */
.pulse-red[b-1lebpvh7qi] {
    animation: pulseRed-b-1lebpvh7qi 1s infinite;
}

@keyframes pulseRed-b-1lebpvh7qi {
    0% {
        box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(239,68,68,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239,68,68,0);
    }
}

/* FADE OUT */
.fade-out[b-1lebpvh7qi] {
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.2s ease;
}


.timeline[b-1lebpvh7qi] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.timeline-step[b-1lebpvh7qi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #6b7280;
    transition: all 0.4s ease;
}

    .timeline-step .dot[b-1lebpvh7qi] {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #d1d5db;
        margin-bottom: 5px;
        transition: all 0.4s ease;
    }

    .timeline-step.activo .dot[b-1lebpvh7qi] {
        background: #00bcd4;
        box-shadow: 0 0 10px rgba(0,188,212,0.6);
        animation: pulse-b-1lebpvh7qi 1.2s infinite;
    }

    .timeline-step.done .dot[b-1lebpvh7qi] {
        background: #10b981;
        box-shadow: 0 0 8px rgba(16,185,129,0.5);
    }

.timeline-line[b-1lebpvh7qi] {
    width: 40px;
    height: 2px;
    background: #d1d5db;
}

@keyframes pulse-b-1lebpvh7qi {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* 🔥 OVERLAY */
.overlay-loader[b-1lebpvh7qi] {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.loader-box[b-1lebpvh7qi] {
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.spinner[b-1lebpvh7qi] {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    animation: spin-b-1lebpvh7qi 1s linear infinite;
}

@keyframes spin-b-1lebpvh7qi {
    to {
        transform: rotate(360deg);
    }
}

/* 🔥 FORM BLOQUEADO */
.form-grid.disabled[b-1lebpvh7qi] {
    pointer-events: none;
    opacity: 0.6;
}

/* 🔥 TIMELINE */
.timeline[b-1lebpvh7qi] {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.timeline-step[b-1lebpvh7qi] {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .timeline-step .dot[b-1lebpvh7qi] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ccc;
    }

    .timeline-step.activo .dot[b-1lebpvh7qi] {
        background: #6366f1;
        animation: pulse-b-1lebpvh7qi 1s infinite;
    }

    .timeline-step.done .dot[b-1lebpvh7qi] {
        background: #10b981;
    }

.timeline-line[b-1lebpvh7qi] {
    flex: 1;
    height: 2px;
    background: #ddd;
}

@keyframes pulse-b-1lebpvh7qi {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* 🔥 FADE */
.fade-out[b-1lebpvh7qi] {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.status[b-1lebpvh7qi] {
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
}




.status[b-1lebpvh7qi] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    border: 1px solid transparent;
}



.status-blocked[b-1lebpvh7qi] {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.status-success[b-1lebpvh7qi] {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.status-warning[b-1lebpvh7qi] {
    background: #fef9c3;
    color: #92400e;
    border-color: #fde68a;
}


.status-info[b-1lebpvh7qi] {
    background: #dbeafe;
    color: #1e3a8a;
    border-color: #bfdbfe;
}

.status-error[b-1lebpvh7qi] {
    background: #ffe4e6;
    color: #b91c1c;
    border-color: #fecdd3;
}


.status-remote[b-1lebpvh7qi] {
    background: #f1f5f9;
    color: #334155;
    border-color: #e2e8f0;
}

.status-ya-inscrito[b-1lebpvh7qi] {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
/* /Components/Componentes/Inscripcion/GrupoCard.razor.rz.scp.css */
.grupo-card[b-8w3jlr9hye] {
    position: relative;
    padding: 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.15s ease;
}

    /* Hover ligero (sin lag) */
    .grupo-card:hover[b-8w3jlr9hye] {
        transform: translateY(-2px);
        border-color: #00bcd4;
    }

    /* Seleccionado */
    .grupo-card.selected[b-8w3jlr9hye] {
        border: 2px solid #00bcd4;
        background: #ecfeff;
    }

/* HEADER */
.card-header[b-8w3jlr9hye] {
    font-weight: 600;
    font-size: 14px;
    color: #111827;
}

/* BODY */
.card-body[b-8w3jlr9hye] {
    font-size: 13px;
    color: #4b5563;
    margin-top: 6px;
}

/* FOOTER */
.card-footer[b-8w3jlr9hye] {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 6px;
}

/* CHECK VISUAL */
.check[b-8w3jlr9hye] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #00bcd4;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* /Components/Componentes/Inscripcion/GruposGrid.razor.rz.scp.css */
/* =========================
   CONTENEDOR
========================= */
.grupos-container[b-5c8dtqc99c] {
    padding: 24px;
    background: #f8fafc;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

/* =========================
   HEADER
========================= */
.grupos-header[b-5c8dtqc99c] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

    .grupos-header h2[b-5c8dtqc99c] {
        font-size: 26px;
        font-weight: 600;
        color: #1e293b;
    }

/* SEARCH */
.search-box[b-5c8dtqc99c] {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: white;
    width: 240px;
    transition: all 0.25s ease;
}

    .search-box:focus[b-5c8dtqc99c] {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
    }

/* =========================
   GRID
========================= */
.grupos-grid[b-5c8dtqc99c] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    transition: all 0.3s ease;
}

/* =========================
   CARD
========================= */
.grupo-card[b-5c8dtqc99c] {
    background: white;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

    /* hover */
    .grupo-card:hover[b-5c8dtqc99c] {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

/* =========================
   🔥 EFECTO iOS
========================= */

/* cuando hay selección */
.grupos-grid.has-selection .grupo-card[b-5c8dtqc99c] {
    opacity: 0.35;
    filter: blur(2px);
    transform: scale(0.96);
}

/* seleccionada */
.grupo-card.selected[b-5c8dtqc99c] {
    opacity: 1 !important;
    filter: none !important;
    transform: scale(1.05) !important;
    z-index: 10;
    border: 2px solid #3b82f6;
    background: #f0f9ff;
    box-shadow: 0 25px 60px rgba(59,130,246,0.25), 0 10px 20px rgba(0,0,0,0.08);
}

    /* glow */
    .grupo-card.selected[b-5c8dtqc99c]::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
    }

/* =========================
   TOP
========================= */
.grupo-top[b-5c8dtqc99c] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .grupo-top h3[b-5c8dtqc99c] {
        font-size: 18px;
        color: #111827;
    }

/* BADGE */
.badge[b-5c8dtqc99c] {
    background: #3b82f6;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

/* TEXT */
.carrera[b-5c8dtqc99c] {
    margin: 10px 0;
    color: #6b7280;
}

.info[b-5c8dtqc99c] {
    font-size: 13px;
    color: #374151;
}

/* BUTTONS */
.actions[b-5c8dtqc99c] {
    margin-top: 10px;
}

.btn-primary[b-5c8dtqc99c] {
    width: 100%;
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn-primary:hover[b-5c8dtqc99c] {
        background: #0284c7;
        box-shadow: 0 8px 20px rgba(14,165,233,0.35);
    }

/* =========================
   EMPTY
========================= */
.empty-state[b-5c8dtqc99c] {
    text-align: center;
    padding: 50px;
    color: #6b7280;
}

/* =========================
   ANIMACIÓN
========================= */
.fade-in[b-5c8dtqc99c] {
    animation: fadeInUp-b-5c8dtqc99c 0.35s ease;
}

@keyframes fadeInUp-b-5c8dtqc99c {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   SKELETON
========================= */
.skeleton[b-5c8dtqc99c] {
    height: 120px;
    border-radius: 18px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 37%, #f1f5f9 63%);
    background-size: 400% 100%;
    animation: shimmer-b-5c8dtqc99c 1.3s infinite;
}

@keyframes shimmer-b-5c8dtqc99c {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}
/* /Components/Componentes/Inscripcion/KardexAlumnoCard.razor.rz.scp.css */
.student-profile-card[b-qgq3zegxe5] {
    position: relative;
    overflow: hidden;
    margin-top: 1.2rem;
    padding: 1.4rem;
    border-radius: 28px;
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    background: linear-gradient( 145deg, rgba(255,255,255,.95), rgba(255,255,255,.82) );
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 10px 30px rgba(0,36,77,.05), 0 20px 50px rgba(0,48,130,.08);
}

/* =========================
   DECORATION
========================= */

.profile-decoration[b-qgq3zegxe5] {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decoration-1[b-qgq3zegxe5] {
    width: 220px;
    height: 220px;
    top: -120px;
    right: -80px;
    background: radial-gradient(rgba(0,48,130,.10), transparent 70%);
}

.decoration-2[b-qgq3zegxe5] {
    width: 160px;
    height: 160px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(rgba(0,96,176,.08), transparent 70%);
}

/* =========================
   AVATAR
========================= */

.student-profile-avatar[b-qgq3zegxe5] {
    min-width: 82px;
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: linear-gradient( 135deg, rgb(0,36,77), rgb(0,48,130) );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(0,48,130,.20), inset 0 1px 1px rgba(255,255,255,.25);
}

/* =========================
   CONTENT
========================= */

.student-profile-content[b-qgq3zegxe5] {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* =========================
   HEADER
========================= */

.student-profile-header[b-qgq3zegxe5] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .student-profile-header h2[b-qgq3zegxe5] {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 800;
        color: rgb(0,36,77);
        letter-spacing: -.4px;
    }

    .student-profile-header p[b-qgq3zegxe5] {
        margin-top: .25rem;
        color: #64748b;
        font-size: .88rem;
    }

/* =========================
   STATUS
========================= */

.student-status[b-qgq3zegxe5] {
    padding: .5rem .9rem;
    border-radius: 999px;
    background: rgba(34,197,94,.10);
    color: #15803d;
    font-size: .75rem;
    font-weight: 700;
    border: 1px solid rgba(34,197,94,.15);
    white-space: nowrap;
}

/* =========================
   GRID
========================= */

.student-profile-grid[b-qgq3zegxe5] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: .9rem;
}

/* =========================
   ITEM
========================= */

.profile-item[b-qgq3zegxe5] {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem;
    border-radius: 20px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(226,232,240,.75);
    transition: all .22s ease;
}

    .profile-item:hover[b-qgq3zegxe5] {
        transform: translateY(-3px);
        background: rgba(255,255,255,.95);
        box-shadow: 0 10px 20px rgba(0,48,130,.08);
    }

/* =========================
   ICON
========================= */

.profile-icon[b-qgq3zegxe5] {
    min-width: 46px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.3);
}

    .profile-icon.blue[b-qgq3zegxe5] {
        background: rgba(37,99,235,.10);
    }

    .profile-icon.purple[b-qgq3zegxe5] {
        background: rgba(124,58,237,.10);
    }

    .profile-icon.cyan[b-qgq3zegxe5] {
        background: rgba(6,182,212,.10);
    }

    .profile-icon.orange[b-qgq3zegxe5] {
        background: rgba(245,158,11,.12);
    }

/* =========================
   DATA
========================= */

.profile-data[b-qgq3zegxe5] {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    min-width: 0;
}

    .profile-data span[b-qgq3zegxe5] {
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .4px;
        text-transform: uppercase;
        color: #64748b;
    }

    .profile-data strong[b-qgq3zegxe5] {
        color: #0f172a;
        font-size: .9rem;
        font-weight: 700;
        word-break: break-word;
    }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .student-profile-card[b-qgq3zegxe5] {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        border-radius: 24px;
    }

    .student-profile-avatar[b-qgq3zegxe5] {
        width: 72px;
        height: 72px;
        min-width: 72px;
        border-radius: 20px;
        font-size: 1.7rem;
    }

    .student-profile-header[b-qgq3zegxe5] {
        flex-direction: column;
        align-items: flex-start;
    }

    .student-profile-grid[b-qgq3zegxe5] {
        grid-template-columns: 1fr;
    }

    .student-profile-header h2[b-qgq3zegxe5] {
        font-size: 1.2rem;
    }
}
/* /Components/Componentes/Inscripcion/KardexBuscador.razor.rz.scp.css */
.search-wrapper[b-f5oijfmr5c] {
    position: relative;
    width: 100%;
    z-index: 999;
}

.search-box[b-f5oijfmr5c] {
    position: relative;
}

.search-input[b-f5oijfmr5c] {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(255,255,255,.35);
    outline: none;
    border-radius: 18px;
    padding: 0 1rem 0 4rem;
    font-size: .92rem;
    font-weight: 500;
    color: #002c82;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 12px rgba(0,0,0,.04), 0 10px 24px rgba(0,48,130,.06);
    transition: .25s ease;
}

    .search-input[b-f5oijfmr5c]::placeholder {
        color: rgba(0,48,130,.55);
    }

    .search-input:focus[b-f5oijfmr5c] {
        transform: translateY(-2px);
        border-color: rgba(0,48,130,.18);
        box-shadow: 0 8px 18px rgba(0,48,130,.10), 0 14px 28px rgba(0,48,130,.10);
    }

.search-icon[b-f5oijfmr5c] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgb(0,36,77), rgb(0,48,130));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .95rem;
    box-shadow: 0 8px 20px rgba(0,48,130,.20);
}

/* =========================
   RESULTADOS
========================= */

.search-results[b-f5oijfmr5c] {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    z-index: 9999;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 12px 35px rgba(0,0,0,.06), 0 20px 50px rgba(0,48,130,.08);
    max-height: 420px;
    overflow-y: auto;
}

.student-item[b-f5oijfmr5c] {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .85rem 1rem;
    cursor: pointer;
    transition: .2s ease;
    border-bottom: 1px solid rgba(226,232,240,.5);
}

    .student-item:hover[b-f5oijfmr5c] {
        background: rgba(255,255,255,.45);
        padding-left: 1.2rem;
    }

.student-avatar[b-f5oijfmr5c] {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(0,36,77), rgb(0,48,130));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0,48,130,.20);
}

.student-info[b-f5oijfmr5c] {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

    .student-info h4[b-f5oijfmr5c] {
        margin: 0;
        font-size: .92rem;
        font-weight: 700;
        color: #002c82;
    }

    .student-info span[b-f5oijfmr5c] {
        font-size: .82rem;
        color: #64748b;
    }

@media(max-width:768px) {

    .search-input[b-f5oijfmr5c] {
        height: 54px;
        padding-left: 3.8rem;
    }

    .search-results[b-f5oijfmr5c] {
        border-radius: 18px;
    }
}
/* /Components/Componentes/Inscripcion/KardexResumen.razor.rz.scp.css */
.summary-grid[b-j1fm97wsu7] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 1rem;
}

/* =========================
   CARD
========================= */

.summary-card[b-j1fm97wsu7] {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 26px;
    background: white;
    transition: .25s ease;
    border: 1px solid rgba(226,232,240,.7);
    box-shadow: 0 6px 20px rgba(15,23,42,.05), 0 12px 35px rgba(15,23,42,.04);
}

    .summary-card:hover[b-j1fm97wsu7] {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(15,23,42,.08), 0 20px 40px rgba(37,99,235,.08);
    }

/* =========================
   ICON
========================= */

.summary-icon[b-j1fm97wsu7] {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* =========================
   COLORS
========================= */

.blue .summary-icon[b-j1fm97wsu7] {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.purple .summary-icon[b-j1fm97wsu7] {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.green .summary-icon[b-j1fm97wsu7] {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.orange .summary-icon[b-j1fm97wsu7] {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

/* =========================
   CONTENT
========================= */

.summary-content[b-j1fm97wsu7] {
    flex: 1;
}

    .summary-content span[b-j1fm97wsu7] {
        display: block;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .4px;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: .35rem;
    }

    .summary-content h2[b-j1fm97wsu7] {
        margin: 0;
        font-size: 1.8rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1;
    }

    .summary-content p[b-j1fm97wsu7] {
        margin-top: .4rem;
        font-size: .82rem;
        color: #94a3b8;
    }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .summary-grid[b-j1fm97wsu7] {
        grid-template-columns: 1fr;
    }

    .summary-card[b-j1fm97wsu7] {
        padding: 1rem;
        border-radius: 22px;
    }

    .summary-icon[b-j1fm97wsu7] {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.2rem;
    }

    .summary-content h2[b-j1fm97wsu7] {
        font-size: 1.5rem;
    }
}
/* /Components/Componentes/Inscripcion/KardexTabla.razor.rz.scp.css */
.kardex-table-wrapper[b-f2bmejflqz] {
    margin-top: 1.2rem;
}

/* =========================
   HEADER
========================= */

.table-header[b-f2bmejflqz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.table-header-info[b-f2bmejflqz] {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.table-icon[b-f2bmejflqz] {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient( 135deg, rgb(0,36,77), rgb(0,48,130) );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,48,130,.15);
}

.table-header-info h3[b-f2bmejflqz] {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: rgb(0,36,77);
}

.table-header-info p[b-f2bmejflqz] {
    margin: .2rem 0 0 0;
    color: #64748b;
    font-size: .85rem;
}

.table-total[b-f2bmejflqz] {
    padding: .7rem 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(226,232,240,.8);
    color: rgb(0,48,130);
    font-size: .82rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

/* =========================
   CONTAINER
========================= */

.kardex-table-container[b-f2bmejflqz] {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient( 145deg, rgba(255,255,255,.95), rgba(255,255,255,.82) );
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 10px 30px rgba(0,36,77,.05), 0 20px 50px rgba(0,48,130,.06);
}

/* =========================
   TABLE
========================= */

.kardex-table[b-f2bmejflqz] {
    width: 100%;
    border-collapse: collapse;
}

    /* =========================
   HEADER
========================= */

    .kardex-table thead[b-f2bmejflqz] {
        background: linear-gradient( 135deg, rgba(0,36,77,.96), rgba(0,48,130,.95) );
    }

    .kardex-table th[b-f2bmejflqz] {
        padding: 1rem;
        text-align: left;
        color: white;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    /* =========================
   BODY
========================= */

    .kardex-table tbody tr[b-f2bmejflqz] {
        transition: all .2s ease;
        border-bottom: 1px solid rgba(226,232,240,.55);
    }

        .kardex-table tbody tr:hover[b-f2bmejflqz] {
            background: rgba(0,48,130,.03);
        }

    .kardex-table td[b-f2bmejflqz] {
        padding: .95rem 1rem;
        color: #334155;
        font-size: .88rem;
        vertical-align: middle;
    }

/* =========================
   CLAVE
========================= */

.clave-badge[b-f2bmejflqz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .75rem;
    border-radius: 12px;
    background: rgba(0,48,130,.07);
    color: rgb(0,48,130);
    font-weight: 700;
    font-size: .78rem;
}

/* =========================
   ASIGNATURA
========================= */

.asignatura-cell[b-f2bmejflqz] {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.asignatura-icon[b-f2bmejflqz] {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(0,48,130,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.asignatura-info[b-f2bmejflqz] {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

    .asignatura-info strong[b-f2bmejflqz] {
        color: #0f172a;
        font-size: .9rem;
    }

    .asignatura-info span[b-f2bmejflqz] {
        color: #64748b;
        font-size: .76rem;
    }

/* =========================
   PILLS
========================= */

.semester-pill[b-f2bmejflqz],
.credit-pill[b-f2bmejflqz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .8rem;
    border-radius: 12px;
    background: rgba(148,163,184,.10);
    color: #475569;
    font-size: .78rem;
    font-weight: 700;
}

/* =========================
   GRADE
========================= */

.grade-pill[b-f2bmejflqz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: .5rem .8rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: .82rem;
}

.grade-excellent[b-f2bmejflqz] {
    background: rgba(34,197,94,.12);
    color: #15803d;
}

.grade-approved[b-f2bmejflqz] {
    background: rgba(37,99,235,.10);
    color: rgb(0,48,130);
}

.grade-failed[b-f2bmejflqz] {
    background: rgba(239,68,68,.10);
    color: #dc2626;
}

/* =========================
   STATUS
========================= */

.status[b-f2bmejflqz] {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .85rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .3px;
}

.approved[b-f2bmejflqz] {
    background: rgba(34,197,94,.12);
    color: #15803d;
    border: 1px solid rgba(34,197,94,.15);
}

.failed[b-f2bmejflqz] {
    background: rgba(239,68,68,.10);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,.15);
}

.regularized[b-f2bmejflqz] {
    background: rgba(245,158,11,.12);
    color: #d97706;
    border: 1px solid rgba(245,158,11,.15);
}

.neutral[b-f2bmejflqz] {
    background: rgba(148,163,184,.12);
    color: #475569;
    border: 1px solid rgba(148,163,184,.15);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .table-header[b-f2bmejflqz] {
        flex-direction: column;
        align-items: flex-start;
    }

    .kardex-table-container[b-f2bmejflqz] {
        overflow-x: auto;
        border-radius: 22px;
    }

    .kardex-table[b-f2bmejflqz] {
        min-width: 900px;
    }

        .kardex-table th[b-f2bmejflqz],
        .kardex-table td[b-f2bmejflqz] {
            padding: .85rem;
        }
}
/* /Components/Componentes/Inscripcion/TablaBajas.razor.rz.scp.css */
/* 🔷 CONTENEDOR GENERAL (tipo card glass) */
.bajas-wrapper[b-odv7rptd32] {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* 🔍 BUSCADOR (igual lenguaje que inputs del form) */
.input-busqueda[b-odv7rptd32] {
    width: 100%;
    padding: 12px 10px 6px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 14px;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

    .input-busqueda:focus[b-odv7rptd32] {
        outline: none;
        border-color: #00bcd4;
        box-shadow: 0 0 6px rgba(0,188,212,0.25);
    }

/* 🎯 FILTROS */
.filtros[b-odv7rptd32] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

/* 🔘 CHIP MODERNO */
.chip[b-odv7rptd32] {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.25s ease;
}

    .chip:hover[b-odv7rptd32] {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    }

    /* ACTIVO (🔥 tu color principal) */
    .chip.activo[b-odv7rptd32] {
        background: linear-gradient(135deg, #00bcd4, #0097a7);
        color: white;
        border: none;
        box-shadow: 0 6px 15px rgba(0,188,212,0.3);
    }

    /* LIMPIAR */
    .chip.limpiar[b-odv7rptd32] {
        background: #fee2e2;
        color: #b91c1c;
        border: none;
    }

/* 📊 TABLA (ahora estilo card rows) */
.tabla-bajas[b-odv7rptd32] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px; /* 🔥 separación entre filas */
}

    /* HEADER */
    .tabla-bajas thead th[b-odv7rptd32] {
        text-align: left;
        font-size: 12px;
        font-weight: 600;
        color: #6b7280;
        padding: 6px 10px;
    }

    /* FILAS COMO TARJETAS */
    .tabla-bajas tbody tr[b-odv7rptd32] {
        background: white;
        border-radius: 12px;
        box-shadow: 0 6px 14px rgba(0,0,0,0.06);
        transition: all 0.25s ease;
        cursor: pointer;
    }

    /* CELDAS */
    .tabla-bajas td[b-odv7rptd32] {
        padding: 12px 10px;
        font-size: 13px;
        border: none;
    }

    /* 🔥 EFECTO HOVER PRO */
    .tabla-bajas tbody tr:hover[b-odv7rptd32] {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

    /* 🎯 PRIMER COLUMNA MÁS FUERTE */
    .tabla-bajas td:first-child[b-odv7rptd32] {
        font-weight: 600;
        color: #111827;
    }

    /* 🧾 MATRÍCULA */
    .tabla-bajas td:nth-child(2)[b-odv7rptd32] {
        font-family: monospace;
        font-size: 12px;
        color: #6b7280;
    }

    /* 🎓 SEMESTRE BADGE */
    .tabla-bajas td:nth-child(3)[b-odv7rptd32] {
        font-weight: 600;
        color: #00bcd4;
    }

    /* 🧩 GRUPO */
    .tabla-bajas td:nth-child(4)[b-odv7rptd32] {
        color: #6366f1;
        font-weight: 500;
    }

    /* ⚠️ MOTIVO BAJA */
    .tabla-bajas td:nth-child(5)[b-odv7rptd32] {
        color: #ef4444;
        font-weight: 500;
    }

    /* 📅 FECHA */
    .tabla-bajas td:nth-child(6)[b-odv7rptd32] {
        font-size: 12px;
        color: #6b7280;
    }

    /* 👤 USUARIO */
    .tabla-bajas td:nth-child(7)[b-odv7rptd32] {
        font-size: 12px;
        color: #374151;
    }

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
    .tabla-bajas thead[b-odv7rptd32] {
        display: none;
    }

    .tabla-bajas tbody tr[b-odv7rptd32] {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    .tabla-bajas td[b-odv7rptd32] {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        font-size: 12px;
    }

        .tabla-bajas td[b-odv7rptd32]::before {
            content: attr(data-label);
            font-weight: 600;
            color: #6b7280;
        }
}



/* 👤 NOMBRE */
.nombre-wrap[b-odv7rptd32] {
    display: flex;
    flex-direction: column;
}

.nombre[b-odv7rptd32] {
    font-weight: 600;
    color: #111827;
}

.sub[b-odv7rptd32] {
    font-size: 11px;
    color: #6b7280;
}

/* 🧾 MATRÍCULA */
.td-matricula[b-odv7rptd32] {
    font-family: monospace;
    font-size: 12px;
    color: #6b7280;
}

/* 🎓 BADGE SEMESTRE */
.badge-sem[b-odv7rptd32] {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,188,212,0.1);
    color: #00bcd4;
    font-size: 12px;
    font-weight: 600;
}

/* 🧩 BADGE GRUPO */
.badge-grupo[b-odv7rptd32] {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(99,102,241,0.1);
    color: #6366f1;
    font-size: 12px;
    font-weight: 600;
}

/* ⚠️ BADGE BAJA */
.badge-baja[b-odv7rptd32] {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(239,68,68,0.12);
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
}

/* 👤 USUARIO */
.td-usuario[b-odv7rptd32] {
    font-size: 12px;
    color: #374151;
}
/* /Components/Componentes/Inscripcion/Ticket.razor.rz.scp.css */
.panel-wrapper[b-vzct3t2esy] {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.panel[b-vzct3t2esy] {
    width: 440px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 48, 130, 0.08);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

    .panel.show[b-vzct3t2esy] {
        opacity: 1;
        transform: translateY(0);
    }

/* HEADER */
.panel-header[b-vzct3t2esy] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0,48,130,0.1);
}

.icon[b-vzct3t2esy] {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #002c82, #004880);
    border-radius: 6px;
}

.title[b-vzct3t2esy] {
    font-weight: 700;
    font-size: 13px;
    color: #002c82;
}

.subtitle[b-vzct3t2esy] {
    font-size: 11px;
    color: #004880;
}

/* PROGRESS */
.progress-container[b-vzct3t2esy] {
    height: 3px;
    background: #e5e7eb;
}

.progress-bar[b-vzct3t2esy] {
    height: 100%;
    width: 0%;
    background: #004880;
    transition: width 0.5s ease;
}

    .progress-bar.loading[b-vzct3t2esy] {
        width: 70%;
        animation: pulse-b-vzct3t2esy 1.5s infinite;
    }

    .progress-bar.done[b-vzct3t2esy] {
        width: 100%;
        background: #16a34a;
    }

/* BODY */
.panel-body[b-vzct3t2esy] {
    padding: 12px 14px;
}

.field[b-vzct3t2esy] {
    margin-bottom: 8px;
}

    .field span[b-vzct3t2esy] {
        font-size: 10px;
        color: #6b7280;
    }

    .field strong[b-vzct3t2esy] {
        display: block;
        font-size: 13px;
        color: #111827;
    }

/* STATUS */
.status-line[b-vzct3t2esy] {
    padding: 8px 14px;
    font-size: 12px;
}

.status.loading[b-vzct3t2esy] {
    color: #004880;
}

.status.success[b-vzct3t2esy] {
    color: #16a34a;
}

.status.blocked[b-vzct3t2esy] {
    color: #b91c1c;
    font-weight: 600;
}

.status.idle[b-vzct3t2esy] {
    color: #6b7280;
}

/* FOOTER */
.panel-footer[b-vzct3t2esy] {
    padding: 10px 14px;
    border-top: 1px solid rgba(0,48,130,0.1);
    text-align: right;
}

/* BOTÓN */
.btn-main[b-vzct3t2esy] {
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #002c82;
    color: white;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s ease;
}

    .btn-main:hover[b-vzct3t2esy] {
        background: #004880;
    }

    .btn-main:disabled[b-vzct3t2esy] {
        background: #9ca3af;
        cursor: not-allowed;
    }

/* SPINNER */
.spinner[b-vzct3t2esy] {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    animation: spin-b-vzct3t2esy 0.8s linear infinite;
}

/* ANIMACIONES */
@keyframes spin-b-vzct3t2esy {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-b-vzct3t2esy {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}
/* /Components/Componentes/Login.razor.rz.scp.css */
/* Contenedor de inputs */
.inputs-container[b-yestnznb4q] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Wrapper de cada input */
.input-wrapper[b-yestnznb4q] {
    position: relative;
    width: 100%;
}


/* Inputs transparentes con solo borde inferior y texto en mayúsculas */
.card-input[b-yestnznb4q] {
    width: 100%;
    padding: 10px 5px 10px 5px;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    text-transform: uppercase; /* <-- fuerza mayúsculas */
}

    .card-input:focus[b-yestnznb4q] {
        border-bottom-color: #00ffe0;
    }

/* Label flotante */
.card-label[b-yestnznb4q] {
    position: absolute;
    left: 5px;
    top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Cuando el input está enfocado o tiene texto */
.card-input:focus + .card-label[b-yestnznb4q],
.card-input:not(:placeholder-shown) + .card-label[b-yestnznb4q] {
    top: -10px;
    font-size: 0.8rem;
    color: #00ffe0;
}

/* Botón con efecto neon */
.login-btn[b-yestnznb4q] {
    margin-top: 2rem;
    padding: 10px 20px;
    background: linear-gradient(90deg, #00ffe0, #00aaff);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.5);
}

    .login-btn:hover[b-yestnznb4q] {
        box-shadow: 0 0 25px rgba(0, 255, 224, 0.8);
        transform: translateY(-2px);
    }

/* Título con efecto neon y parpadeo */
.login-title.neon-title[b-yestnznb4q] {
    text-align: center;
    font-size: 2rem;
    color: #00ffe0;
    text-shadow: 0 0 5px #00ffe0, 0 0 10px #00ffe0, 0 0 20px #00aaff;
}

.blink[b-yestnznb4q] {
    animation: neonBlink-b-yestnznb4q 1.5s infinite alternate;
}

@keyframes neonBlink-b-yestnznb4q {
    0% {
        text-shadow: 0 0 5px #00ffe0, 0 0 10px #00ffe0, 0 0 20px #00aaff;
        color: #00ffe0;
    }

    50% {
        text-shadow: 0 0 15px #00ffe0, 0 0 25px #00ffe0, 0 0 40px #00aaff;
        color: #00fff0;
    }

    100% {
        text-shadow: 0 0 5px #00ffe0, 0 0 10px #00ffe0, 0 0 20px #00aaff;
        color: #00ffe0;
    }
}

/* Spinner dentro del botón */
.spinner-wrapper[b-yestnznb4q] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner[b-yestnznb4q] {
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-yestnznb4q 1s linear infinite;
}

.spinner-text[b-yestnznb4q] {
    font-size: 0.9rem;
    color: #fff;
}

/* Animación de spinner */
@keyframes spin-b-yestnznb4q {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mensaje de error */
.error-message[b-yestnznb4q] {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ff6b6b;
    opacity: 0;
    transition: opacity 0.3s;
}

    .error-message.show[b-yestnznb4q] {
        opacity: 1;
    }

/* Animación entrada */
.animate-fadein[b-yestnznb4q] {
    animation: fadeIn-b-yestnznb4q 0.6s ease forwards;
}

@keyframes fadeIn-b-yestnznb4q {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Shake del botón */
.login-btn.shake[b-yestnznb4q] {
    animation: shake-b-yestnznb4q 0.5s;
}

@keyframes shake-b-yestnznb4q {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Fade out suave */
.fade-out[b-yestnznb4q] {
    animation: fadeOut-b-yestnznb4q 0.5s forwards;
}

@keyframes fadeOut-b-yestnznb4q {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


/* Mensaje de error con fade-in */
/* Fade-in para error */
.error-message.fade[b-yestnznb4q] {
    animation: fadeInError-b-yestnznb4q 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInError-b-yestnznb4q {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Layout/LoginLayout.razor.rz.scp.css */

.login-container[b-acfewx5jbk] {
    display: flex;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
}

    /* -------------------------- */
    /* --- Fondo Mejorado --- */
    .login-container .background-effects[b-acfewx5jbk] {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(37,99,235,0.5), transparent 40%), radial-gradient(circle at 80% 70%, rgba(6,182,212,0.5), transparent 40%), #020617;
        z-index: 0;
    }

/* ✨ Partículas */
.background-effects[b-acfewx5jbk]::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveParticles-b-acfewx5jbk 25s linear infinite;
}

/* -------------------------- */
/* --- Panel Izquierdo --- */
.login-left[b-acfewx5jbk] {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    z-index: 1;
}

/* Brand / Textos */
.brand[b-acfewx5jbk] {
    color: white;
    max-width: 500px;
    animation: fadeIn-b-acfewx5jbk 1.2s ease;
}

.title[b-acfewx5jbk] {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.subtitle[b-acfewx5jbk] {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #38bdf8, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.description[b-acfewx5jbk] {
    font-size: 1rem;
    opacity: 0.8;
}

/* -------------------------- */
/* --- Panel Derecho --- */
.login-right[b-acfewx5jbk] {
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 20px;
}

.glass-card[b-acfewx5jbk] {
    width: 100%;
    max-width: 420px;
    padding: 45px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 80px rgba(37,99,235,0.25);
    color: white;
    animation: slideIn-b-acfewx5jbk 1s ease;
    transition: transform 0.3s ease;
}

    .glass-card:hover[b-acfewx5jbk] {
        transform: translateY(-5px) scale(1.01);
    }

/* -------------------------- */
/* --- Responsivo --- */
@media (max-width: 900px) {
    .login-left[b-acfewx5jbk] {
        display: none;
    }

    .login-right[b-acfewx5jbk] {
        flex: 1;
    }
}

/* -------------------------- */
/* --- Animaciones --- */
@keyframes fadeIn-b-acfewx5jbk {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn-b-acfewx5jbk {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes moveParticles-b-acfewx5jbk {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-200px);
    }
}



/* -------------------------- */
/* --- Brand Container --- */
.brand[b-acfewx5jbk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px; /* más ancho para el texto */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* -------------------------- */
/* --- Logo Container --- */
.logo-container[b-acfewx5jbk] {
    width: 100%; /* ocupa más ancho del brand */
    max-width: 300px; /* tamaño máximo del logo */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -100px; /* lo acerca al texto */
    overflow: hidden;
}

    .logo-container img[b-acfewx5jbk] {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    }

/* -------------------------- */
/* --- Text Styles --- */
.brand .title[b-acfewx5jbk] {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.brand .subtitle[b-acfewx5jbk] {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.brand .description[b-acfewx5jbk] {
    font-size: 1rem;
    color: #ccc;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-e7zetqejho] {
    --glass-bg: rgba(255,255,255,0.12);
    --glass-border: rgba(255,255,255,0.35);
    --glass-hover: rgba(255,255,255,0.25);
    --primary-color: #ffffff;
    --secondary-color: rgba(255,255,255,0.2);
}

/* -------------------------- */
/* --- GLOBAL --- */
*[b-e7zetqejho] {
    box-sizing: border-box;
}

html[b-e7zetqejho], body[b-e7zetqejho] {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Poppins', sans-serif;
    background: #f0f1f6;
    overflow-x: hidden;
}

.main-layout[b-e7zetqejho] {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* -------------------------- */
/* --- SIDEBAR --- */
.sidebar[b-e7zetqejho] {
    width: 200px;
    min-width: 200px;
    transition: all 0.35s;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Sidebar cerrado */
#toggleSidebar:checked ~ .sidebar[b-e7zetqejho] {
    width: 0;
    min-width: 0;
    padding: 0;
    opacity: 0;
}

/* Logo del sidebar */
.sidebar-logo img[b-e7zetqejho] {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 12px -4px rgba(0,36,77,0.7), 0 10px 20px -10px rgba(0,48,130,0.5), 0 0 8px rgba(0,48,130,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .sidebar-logo img:hover[b-e7zetqejho] {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 8px 16px -4px rgba(0,36,77,0.8), 0 12px 24px -12px rgba(0,48,130,0.6), 0 0 12px rgba(0,48,130,0.35);
    }

/* Usuario en sidebar */
.sidebar-user-info[b-e7zetqejho] {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.user-avatar[b-e7zetqejho] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-details[b-e7zetqejho] {
    font-size: 14px;
}

/* Submenu general */
.sidebar-nav[b-e7zetqejho] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link[b-e7zetqejho] {
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

    .sidebar-link:hover[b-e7zetqejho],
    .sidebar-link.active[b-e7zetqejho] {
        background: rgba(255,255,255,0.35);
    }

/* -------------------------- */
/* --- MAIN CONTENT --- */
.main-content[b-e7zetqejho] {
    flex: 1;
    min-width: 0;
    padding: 25px;
    transition: all 0.35s;
}

#toggleSidebar:checked ~ .main-content[b-e7zetqejho] {
    padding-left: 40px;
}

.content-body[b-e7zetqejho] {
    background: rgba(255, 255, 255, 0.15); /* ligera transparencia */
    backdrop-filter: blur(10px); /* efecto glass */
    border-radius: 14px;
    padding: 20px;
    min-height: calc(100vh - 60px);
    border: 1px solid rgba(255,255,255,0.2); /* borde sutil */
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* -------------------------- */
/* --- TOGGLE SIDEBAR --- */
.sidebar-toggle[b-e7zetqejho] {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 12px;
    background: var(--glass-hover);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

    .sidebar-toggle:hover[b-e7zetqejho] {
        transform: scale(1.08);
        background: rgba(255,255,255,0.5);
    }

    .sidebar-toggle[b-e7zetqejho]::before {
        content: "☰";
        font-size: 20px;
        transition: transform 0.3s ease;
    }

#toggleSidebar:checked ~ .main-content .sidebar-toggle[b-e7zetqejho]::before {
    content: "✕";
    transform: rotate(180deg);
}

/* -------------------------- */
/* --- DOCK --- */
.dock-container[b-e7zetqejho] {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    z-index: 1000;
}

.dock-btn[b-e7zetqejho] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

    .dock-btn:hover[b-e7zetqejho] {
        transform: translateY(-6px) scale(1.15);
        box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    }

    .dock-btn.active[b-e7zetqejho] {
        box-shadow: 0 0 8px rgba(0,0,255,0.15);
    }

.dock-icon[b-e7zetqejho] {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.2s;
}

.tooltip[b-e7zetqejho] {
    position: absolute;
    bottom: 95px;
    font-size: 12px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.dock-btn:hover .tooltip[b-e7zetqejho] {
    opacity: 1;
}

/* -------------------------- */
/* SIDEBAR SUBMENÚS */
.sidebar-submenu[b-e7zetqejho] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

    .sidebar-submenu a[b-e7zetqejho] {
        position: relative;
        padding: 12px 16px 12px 32px;
        border-radius: 14px;
        font-weight: 600;
        font-size: 17px;
        cursor: pointer;
        background: linear-gradient(90deg, rgb(0,36,77), rgb(0,48,130));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: transform 0.3s ease, text-shadow 0.3s ease, color 0.3s ease;
    }

        .sidebar-submenu a:hover[b-e7zetqejho] {
            transform: translateY(-2px) scale(1.03);
            text-shadow: 0 0 8px rgba(0, 48, 130, 0.4), 0 0 12px rgba(0, 48, 130, 0.2);
            color: #fff;
            box-shadow: 0 4px 12px rgba(0, 48, 130, 0.15);
        }

            .sidebar-submenu a:hover[b-e7zetqejho]::after {
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                width: 120%;
                height: 100%;
                border-radius: 16px;
                background: rgba(255, 255, 255, 0.1);
                filter: blur(14px);
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
                pointer-events: none;
                z-index: 0;
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

        .sidebar-submenu a.active[b-e7zetqejho]::before {
            content: "";
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #002c82;
            z-index: 2;
        }

    .sidebar-submenu a[b-e7zetqejho] {
        animation: floatAndGlow-b-e7zetqejho 4s ease-in-out infinite;
    }

        .sidebar-submenu a.active[b-e7zetqejho] {
            animation: none;
        }

@keyframes floatAndGlow-b-e7zetqejho {
    0%, 50%, 100% {
        transform: translateY(0) scale(1.02);
        text-shadow: 0 0 1px rgba(0,48,130,0.05);
    }

    25%, 75% {
        transform: translateY(-2px) scale(1.03);
        text-shadow: 0 0 2px rgba(0,48,130,0.08);
    }
}

/* Sin subrayado */
.sidebar-submenu a[b-e7zetqejho],
.sidebar-submenu a:visited[b-e7zetqejho],
.sidebar-submenu a:hover[b-e7zetqejho],
.sidebar-submenu a:active[b-e7zetqejho] {
    text-decoration: none;
}

/* -------------------------- */
/* HEADER DEL SISTEMA */
.main-header[b-e7zetqejho] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: #f0f1f6; /* fondo claro */
    border-bottom: 1px solid rgba(0,48,130,0.15);
}

/* IZQUIERDA DEL HEADER - INFO DEL CENTRO */
.header-centro[b-e7zetqejho] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-centro-logo[b-e7zetqejho] {
    width: 48px;
    height: 48px;
}

.header-centro-texto[b-e7zetqejho] {
    display: flex;
    flex-direction: column;
}

    .header-centro-texto .linea-principal[b-e7zetqejho] {
        font-weight: 700;
        font-size: 16px;
        color: #002c82;
    }

    .header-centro-texto .nombre-centro[b-e7zetqejho] {
        font-weight: 600;
        font-size: 15px;
        color: #004880;
    }

    .header-centro-texto .cct[b-e7zetqejho] {
        font-weight: 500;
        font-size: 14px;
        color: #0060b0;
    }

/* DERECHA DEL HEADER - USUARIO */
.header-usuario[b-e7zetqejho] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #002c82;
}

    .header-usuario .icon-usuario[b-e7zetqejho] {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        font-size: 18px;
        transition: transform 0.3s ease;
    }

        .header-usuario .icon-usuario:hover[b-e7zetqejho] {
            transform: scale(1.1);
        }

.icon-usuario-img[b-e7zetqejho] {
    width: 36px;
    height: 36px;
    border-radius: 50%; /* círculo */
    object-fit: cover; /* mantiene proporciones y recorta */
    border: 2px solid rgba(255,255,255,0.2); /* opcional, borde sutil */
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar[b-agrglyicci] {
    position: relative; /* Para tooltips absolutos */
    width: 80px;
    padding: 2rem 0;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: visible; /* Permite que tooltips se salgan */
    z-index: 100; /* Arriba del main-content */
}

/* NavMenu */
.navmenu-sidebar nav[b-agrglyicci] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

    .navmenu-sidebar nav a[b-agrglyicci] {
        position: relative; /* Tooltip absoluto relativo al <a> */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        cursor: pointer;
    }

        /* Tooltip */
        .navmenu-sidebar nav a .tooltip[b-agrglyicci] {
            position: absolute; /* relativo al <a> */
            left: 100%; /* al lado derecho del icono */
            top: 50%;
            transform: translateY(-50%) translateX(10px);
            background: linear-gradient(270deg, #6a1b9a, #ab47bc, #ff4081, #6a1b9a);
            background-size: 400% 400%;
            color: #fff;
            padding: 0.4rem 0.8rem;
            border-radius: 10px;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 12px rgba(106,27,154,0.4), 0 0 24px rgba(171,71,188,0.3), 0 0 36px rgba(255,64,129,0.2);
            backdrop-filter: blur(12px);
        }

        .navmenu-sidebar nav a:hover .tooltip[b-agrglyicci] {
            opacity: 1;
            transform: translateY(-50%) translateX(10px);
        }
/* /Components/Pages/Administrativo/Solicitud-certificacion-administrativo.razor.rz.scp.css */
.admin-page[b-4n9pbdzhp4] {
    padding: 24px;
}

.page-header[b-4n9pbdzhp4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

    .page-header h1[b-4n9pbdzhp4] {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        color: #0f172a;
    }

    .page-header p[b-4n9pbdzhp4] {
        margin-top: 4px;
        color: #64748b;
    }

.header-actions[b-4n9pbdzhp4] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filters-card[b-4n9pbdzhp4],
.table-card[b-4n9pbdzhp4] {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 20px;
}

.filters-grid[b-4n9pbdzhp4] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 16px;
}

.form-group[b-4n9pbdzhp4] {
    display: flex;
    flex-direction: column;
}

    .form-group label[b-4n9pbdzhp4] {
        margin-bottom: 6px;
        font-size: 14px;
        font-weight: 700;
        color: #334155;
    }

.input[b-4n9pbdzhp4] {
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    padding: 11px 14px;
    font-size: 14px;
    background: #fff;
    transition: .2s;
}

    .input:focus[b-4n9pbdzhp4] {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37,99,235,.10);
    }

.filters-actions[b-4n9pbdzhp4] {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-search[b-4n9pbdzhp4],
.btn-clear[b-4n9pbdzhp4],
.btn-refresh[b-4n9pbdzhp4],
.btn-validate[b-4n9pbdzhp4],
.btn-preview[b-4n9pbdzhp4],
.btn-row-validate[b-4n9pbdzhp4],
.btn-row-reject[b-4n9pbdzhp4],
.btn-cancel[b-4n9pbdzhp4],
.btn-danger[b-4n9pbdzhp4] {
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: .2s;
    white-space: nowrap;
}

.btn-search[b-4n9pbdzhp4] {
    background: #2563eb;
    color: white;
}

    .btn-search:hover[b-4n9pbdzhp4] {
        transform: translateY(-1px);
    }

.btn-clear[b-4n9pbdzhp4] {
    background: #e2e8f0;
    color: #0f172a;
}

.btn-refresh[b-4n9pbdzhp4] {
    background: #0f172a;
    color: white;
}

.btn-validate[b-4n9pbdzhp4] {
    background: #16a34a;
    color: white;
}

.btn-preview[b-4n9pbdzhp4] {
    background: #2563eb;
    color: white;
    width: 100%;
}

.btn-row-validate[b-4n9pbdzhp4] {
    background: #16a34a;
    color: white;
    width: 100%;
}

.btn-row-reject[b-4n9pbdzhp4] {
    background: #dc2626;
    color: white;
    width: 100%;
}

.table-responsive[b-4n9pbdzhp4] {
    overflow-x: auto;
}

.table[b-4n9pbdzhp4] {
    width: 100%;
    min-width: 1800px;
    border-collapse: collapse;
}

    .table th[b-4n9pbdzhp4] {
        background: #f8fafc;
        padding: 14px 12px;
        text-align: left;
        font-size: 13px;
        font-weight: 700;
        color: #334155;
        border-bottom: 1px solid #e2e8f0;
        white-space: nowrap;
    }

    .table td[b-4n9pbdzhp4] {
        padding: 14px 12px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 13px;
        vertical-align: middle;
        color: #1e293b;
    }

    .table tr:hover[b-4n9pbdzhp4] {
        background: #f8fafc;
    }

.center[b-4n9pbdzhp4] {
    text-align: center;
}

.nowrap[b-4n9pbdzhp4] {
    white-space: nowrap;
}

.wrap-cell[b-4n9pbdzhp4] {
    min-width: 220px;
    max-width: 280px;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.col-check[b-4n9pbdzhp4] {
    width: 60px;
}

.col-folio[b-4n9pbdzhp4] {
    width: 140px;
}

.col-curp[b-4n9pbdzhp4] {
    width: 180px;
}

.col-alumno[b-4n9pbdzhp4] {
    width: 260px;
}

.col-carrera[b-4n9pbdzhp4] {
    width: 320px;
}

.col-documento[b-4n9pbdzhp4] {
    width: 250px;
}

.col-small[b-4n9pbdzhp4] {
    width: 90px;
}

.col-usuario[b-4n9pbdzhp4] {
    width: 180px;
}

.col-estatus[b-4n9pbdzhp4] {
    width: 130px;
}

.col-fecha[b-4n9pbdzhp4] {
    width: 120px;
}

.col-observaciones[b-4n9pbdzhp4] {
    width: 320px;
}

.col-btn[b-4n9pbdzhp4] {
    width: 130px;
    text-align: center;
}

.folio[b-4n9pbdzhp4] {
    font-weight: 800;
    color: #2563eb;
}

.estatus[b-4n9pbdzhp4] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
    min-width: 100px;
}

.ok[b-4n9pbdzhp4] {
    background: #dcfce7;
    color: #166534;
}

.bad[b-4n9pbdzhp4] {
    background: #fee2e2;
    color: #991b1b;
}

.info[b-4n9pbdzhp4] {
    background: #dbeafe;
    color: #1d4ed8;
}

.pending[b-4n9pbdzhp4] {
    background: #fef3c7;
    color: #92400e;
}

.badge-ok[b-4n9pbdzhp4] {
    color: #16a34a;
    font-weight: 800;
}

.badge-pending[b-4n9pbdzhp4] {
    color: #dc2626;
    font-weight: 800;
}

.loading[b-4n9pbdzhp4],
.empty[b-4n9pbdzhp4] {
    padding: 60px;
    text-align: center;
    color: #64748b;
    font-size: 15px;
}

.modal-overlay[b-4n9pbdzhp4] {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-box[b-4n9pbdzhp4] {
    background: white;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.20);
}

    .modal-box h3[b-4n9pbdzhp4] {
        margin: 0 0 10px 0;
        font-size: 24px;
        color: #0f172a;
    }

    .modal-box p[b-4n9pbdzhp4] {
        color: #64748b;
        margin-bottom: 16px;
    }

.textarea[b-4n9pbdzhp4] {
    min-height: 160px;
    resize: vertical;
    width: 100%;
}

.modal-actions[b-4n9pbdzhp4] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.btn-cancel[b-4n9pbdzhp4] {
    background: #e2e8f0;
    color: #0f172a;
}

.btn-danger[b-4n9pbdzhp4] {
    background: #dc2626;
    color: white;
}

@media (max-width: 768px) {

    .admin-page[b-4n9pbdzhp4] {
        padding: 14px;
    }

    .filters-grid[b-4n9pbdzhp4] {
        grid-template-columns: 1fr;
    }

    .page-header[b-4n9pbdzhp4] {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions[b-4n9pbdzhp4] {
        width: 100%;
    }

        .header-actions button[b-4n9pbdzhp4] {
            flex: 1;
        }
}
/* /Components/Pages/Admin/Tramites.razor.rz.scp.css */
.tramite-page[b-fzv1jyiwgk] {
    padding: 20px;
    background: #f5f7fb;
    font-family: 'Segoe UI', sans-serif;
}

/* ===================== */
/* 🟦 CARDS */
/* ===================== */
.tramite-resumen[b-fzv1jyiwgk] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.card.resumen[b-fzv1jyiwgk] {
    background: white;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    text-align: center;
    transition: .2s;
}

    .card.resumen:hover[b-fzv1jyiwgk] {
        transform: translateY(-3px);
    }

    .card.resumen h3[b-fzv1jyiwgk] {
        font-size: 14px;
        color: #666;
    }

    .card.resumen .valor[b-fzv1jyiwgk] {
        font-size: 28px;
        font-weight: bold;
        color: #1e88e5;
    }

/* ===================== */
/* 🔘 TABS */
/* ===================== */
.tabs[b-fzv1jyiwgk] {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.tab[b-fzv1jyiwgk] {
    padding: 10px 18px;
    border: none;
    background: #e5e7eb;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 500;
    transition: .2s;
}

    .tab:hover[b-fzv1jyiwgk] {
        background: #d1d5db;
    }

    .tab.active[b-fzv1jyiwgk] {
        background: #3b82f6;
        color: white;
    }

/* ===================== */
/* 📋 TABLA */
/* ===================== */
.tabla-container[b-fzv1jyiwgk] {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.tabla-tramites[b-fzv1jyiwgk] {
    width: 100%;
    border-collapse: collapse;
}

    .tabla-tramites thead[b-fzv1jyiwgk] {
        background: #1e88e5;
        color: white;
    }

    .tabla-tramites th[b-fzv1jyiwgk],
    .tabla-tramites td[b-fzv1jyiwgk] {
        padding: 12px;
        font-size: 14px;
    }

    .tabla-tramites tbody tr[b-fzv1jyiwgk] {
        border-bottom: 1px solid #eee;
        transition: .2s;
    }

        .tabla-tramites tbody tr:hover[b-fzv1jyiwgk] {
            background: #f5f9ff;
        }

        .tabla-tramites tbody tr.selected[b-fzv1jyiwgk] {
            background: #e3f2fd;
        }

.empty[b-fzv1jyiwgk] {
    text-align: center;
    padding: 20px;
    color: #888;
}

/* ===================== */
/* 🟢 BOTÓN LOTE */
/* ===================== */
.acciones[b-fzv1jyiwgk] {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.btn-lote[b-fzv1jyiwgk] {
    background: linear-gradient(135deg, #43a047, #2e7d32);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: .2s;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

    .btn-lote:hover[b-fzv1jyiwgk] {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0,0,0,.15);
    }

    .btn-lote:disabled[b-fzv1jyiwgk] {
        background: #9ca3af;
        cursor: not-allowed;
        box-shadow: none;
    }

/* ===================== */
/* 📄 PAGINACIÓN */
/* ===================== */
.paginacion[b-fzv1jyiwgk] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

    .paginacion button[b-fzv1jyiwgk] {
        background: #3b82f6;
        color: white;
        border: none;
        padding: 8px 14px;
        border-radius: 8px;
        cursor: pointer;
        transition: .2s;
    }

        .paginacion button:hover[b-fzv1jyiwgk] {
            background: #2563eb;
        }

        .paginacion button:disabled[b-fzv1jyiwgk] {
            background: #9ca3af;
            cursor: not-allowed;
        }

    .paginacion span[b-fzv1jyiwgk] {
        font-weight: 500;
        color: #444;
    }

/* ===================== */
/* 🏷 BADGES */
/* ===================== */
.badge[b-fzv1jyiwgk] {
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: white;
}

.pendiente[b-fzv1jyiwgk] {
    background: #facc15;
    color: #333;
}

.en_lote[b-fzv1jyiwgk] {
    background: #60a5fa;
}

.generado[b-fzv1jyiwgk] {
    background: #22c55e;
}

.enviado[b-fzv1jyiwgk] {
    background: #a78bfa;
}

.error[b-fzv1jyiwgk] {
    background: #ef4444;
}

/* ===================== */
/* 📦 LOTE */
/* ===================== */
.lote[b-fzv1jyiwgk] {
    font-size: 12px;
    background: #e0e7ff;
    padding: 4px 8px;
    border-radius: 6px;
}

/* ===================== */
/* 🟢 ALERTA */
/* ===================== */
.alert-success[b-fzv1jyiwgk] {
    margin-top: 10px;
    padding: 12px;
    background: #dcfce7;
    color: #166534;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

/* ===================== */
/* 🟡 MODAL (CORREGIDO PRO) */
/* ===================== */
.modal-overlay[b-fzv1jyiwgk] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
}

.modal[b-fzv1jyiwgk] {
    background: white;
    padding: 25px;
    border-radius: 14px;
    width: 340px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    animation: fadeIn-b-fzv1jyiwgk .18s ease-in-out;
    position: relative;
    z-index: 100000;
}

    .modal h3[b-fzv1jyiwgk] {
        margin-bottom: 10px;
    }

    .modal p[b-fzv1jyiwgk] {
        margin-bottom: 20px;
        color: #555;
    }

/* ===================== */
/* 🟡 MODAL BOTONES */
/* ===================== */
.modal-actions[b-fzv1jyiwgk] {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-cancel[b-fzv1jyiwgk] {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-ok[b-fzv1jyiwgk] {
    background: #22c55e;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-cancel:hover[b-fzv1jyiwgk] {
    background: #dc2626;
}

.btn-ok:hover[b-fzv1jyiwgk] {
    background: #16a34a;
}

/* ===================== */
/* ✨ ANIMACIÓN */
/* ===================== */
@keyframes fadeIn-b-fzv1jyiwgk {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* /Components/Pages/Escuela/Bajas-escolares.razor.rz.scp.css */
body[b-7fieddclzx] {
}
/* /Components/Pages/Escuela/Evaluaciones-ordinarias.razor.rz.scp.css */
/* ================================
   PAGE
================================ */
.evaluacion-page[b-dk0c0g2rzm] {
    padding: 2rem;
    min-height: 100vh;
    background: linear-gradient( 180deg, #f8fafc 0%, #eef4ff 100%);
}

/* ================================
   FILTROS
================================ */
.filters-container[b-dk0c0g2rzm] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(15,23,42,.06);
    border: 1px solid rgba(255,255,255,.6);
}

    /* ================================
   SELECTS
================================ */
    .filters-container select[b-dk0c0g2rzm] {
        height: 58px;
        border: none;
        outline: none;
        border-radius: 18px;
        padding: 0 1rem;
        font-size: .96rem;
        font-weight: 500;
        background: #fff;
        color: #1e293b;
        box-shadow: 0 4px 15px rgba(15,23,42,.05);
        transition: .25s ease;
        cursor: pointer;
    }

        .filters-container select:hover[b-dk0c0g2rzm] {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37,99,235,.12);
        }

        .filters-container select:focus[b-dk0c0g2rzm] {
            box-shadow: 0 0 0 4px rgba(59,130,246,.15), 0 8px 24px rgba(37,99,235,.15);
        }

    /* ================================
   BUTTON
================================ */
    .filters-container button[b-dk0c0g2rzm] {
        height: 58px;
        border: none;
        border-radius: 18px;
        background: linear-gradient( 135deg, #2563eb, #1d4ed8);
        color: white;
        font-size: .96rem;
        font-weight: 700;
        letter-spacing: .3px;
        cursor: pointer;
        transition: .28s ease;
        box-shadow: 0 10px 25px rgba(37,99,235,.28);
    }

        .filters-container button:hover[b-dk0c0g2rzm] {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(37,99,235,.35);
        }

        .filters-container button:active[b-dk0c0g2rzm] {
            transform: scale(.98);
        }

/* ================================
   GRID
================================ */
.students-grid[b-dk0c0g2rzm] {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 1.5rem;
}

/* ================================
   CARD
================================ */
.student-card[b-dk0c0g2rzm] {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: 28px;
    background: linear-gradient( 145deg, rgba(255,255,255,.95), rgba(248,250,252,.95));
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
    transition: .3s ease;
    cursor: pointer;
}

    .student-card[b-dk0c0g2rzm]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(59,130,246,.05), transparent 60%);
        pointer-events: none;
    }

    .student-card:hover[b-dk0c0g2rzm] {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 20px 45px rgba(37,99,235,.14);
    }

/* ================================
   AVATAR
================================ */
.student-avatar[b-dk0c0g2rzm] {
    min-width: 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    background: linear-gradient( 135deg, #2563eb, #1e40af);
    box-shadow: 0 10px 25px rgba(37,99,235,.28);
}

/* ================================
   INFO
================================ */
.student-info[b-dk0c0g2rzm] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    min-width: 0;
}

    .student-info h3[b-dk0c0g2rzm] {
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .student-info span[b-dk0c0g2rzm] {
        font-size: .92rem;
        color: #64748b;
        font-weight: 500;
    }

    .student-info small[b-dk0c0g2rzm] {
        width: max-content;
        margin-top: .2rem;
        padding: .38rem .75rem;
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 700;
        color: #b91c1c;
        background: #fee2e2;
    }

/* ================================
   EMPTY STATE
================================ */
.empty-state[b-dk0c0g2rzm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding: 4rem 2rem;
    border-radius: 28px;
    background: white;
    box-shadow: 0 10px 35px rgba(15,23,42,.05);
}

    .empty-state h3[b-dk0c0g2rzm] {
        margin: 0;
        font-size: 1.2rem;
        color: #0f172a;
    }

    .empty-state p[b-dk0c0g2rzm] {
        margin: 0;
        color: #64748b;
    }

/* ================================
   RESPONSIVE
================================ */
@media (max-width:768px) {

    .evaluacion-page[b-dk0c0g2rzm] {
        padding: 1rem;
    }

    .filters-container[b-dk0c0g2rzm] {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .students-grid[b-dk0c0g2rzm] {
        grid-template-columns: 1fr;
    }

    .student-card[b-dk0c0g2rzm] {
        padding: 1rem;
    }

    .student-avatar[b-dk0c0g2rzm] {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.2rem;
    }
}


.status-evaluado[b-dk0c0g2rzm],
.status-pendiente[b-dk0c0g2rzm] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
}

.status-evaluado[b-dk0c0g2rzm] {
    background: #dcfce7;
    color: #166534;
}

.status-pendiente[b-dk0c0g2rzm] {
    background: #fef3c7;
    color: #92400e;
}

.student-summary[b-dk0c0g2rzm] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.summary-badge[b-dk0c0g2rzm] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
    line-height: 1;
}

    .summary-badge.success[b-dk0c0g2rzm] {
        background: #dcfce7;
        color: #166534;
    }

    .summary-badge.danger[b-dk0c0g2rzm] {
        background: #fee2e2;
        color: #991b1b;
    }

    .summary-badge.info[b-dk0c0g2rzm] {
        background: #dbeafe;
        color: #1d4ed8;
    }


.periodo-bloqueado[b-dk0c0g2rzm] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
}

.periodo-card[b-dk0c0g2rzm] {
    max-width: 600px;
    width: 100%;
    background: #fff;
    border-left: 6px solid #ef4444;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
}

    .periodo-card h2[b-dk0c0g2rzm] {
        margin-bottom: 12px;
        color: #dc2626;
    }

    .periodo-card p[b-dk0c0g2rzm] {
        font-size: 1rem;
        color: #555;
    }


.periodo-container[b-dk0c0g2rzm] {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.periodo-card[b-dk0c0g2rzm] {
    max-width: 700px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    border-top: 5px solid #2563eb;
}

.periodo-icon[b-dk0c0g2rzm] {
    font-size: 4rem;
    margin-bottom: 15px;
}

.periodo-card h2[b-dk0c0g2rzm] {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.periodo-divider[b-dk0c0g2rzm] {
    width: 80px;
    height: 4px;
    background: #2563eb;
    margin: 0 auto 25px auto;
    border-radius: 20px;
}

.periodo-mensaje[b-dk0c0g2rzm] {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

.periodo-info[b-dk0c0g2rzm] {
    display: block;
    color: #6b7280;
    font-size: .95rem;
}
/* /Components/Pages/Escuela/Inscripcion_escuela.razor.rz.scp.css */
/* =========================
   WIZARD GENERAL
========================= */

.wizard-container[b-c24zaul2c6] {
    padding: 20px;
    color: white;
}

/* =========================
   STEP PROGRESS
========================= */

.stepper[b-c24zaul2c6] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.step-item[b-c24zaul2c6] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-item.active[b-c24zaul2c6] {
        background: #00f5d4;
        color: black;
        transform: scale(1.1);
        transition: .3s;
    }

.line[b-c24zaul2c6] {
    width: 50px;
    height: 2px;
    background: #555;
}

/* =========================
   SLIDER
========================= */

.slider-container[b-c24zaul2c6] {
    width: 100%;
    overflow: hidden;
}

.slider-track[b-c24zaul2c6] {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.slide[b-c24zaul2c6] {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 10px;
}

/* =========================
   GRUPOS / CARDS
========================= */

.card-grid[b-c24zaul2c6] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.grupo-card[b-c24zaul2c6] {
    background: rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

    .grupo-card:hover[b-c24zaul2c6] {
        transform: scale(1.05);
    }

    .grupo-card.selected[b-c24zaul2c6] {
        background: #00f5d4;
        color: black;
    }

/* =========================
   BOTONES (PRO UI)
========================= */

.btn-pos-primary[b-c24zaul2c6] {
    background: linear-gradient(135deg, #00c853, #64dd17);
    color: #000;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.25);
    position: relative;
    overflow: hidden;
}

    .btn-pos-primary:hover[b-c24zaul2c6] {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 28px rgba(0, 200, 83, 0.35);
    }

    .btn-pos-primary:active[b-c24zaul2c6] {
        transform: scale(0.98);
    }

    /* scanner effect */
    .btn-pos-primary[b-c24zaul2c6]::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.3);
        transform: skewX(-20deg);
    }

    .btn-pos-primary:hover[b-c24zaul2c6]::after {
        animation: scan-b-c24zaul2c6 0.6s ease;
    }

@keyframes scan-b-c24zaul2c6 {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.btn-pos-secondary[b-c24zaul2c6] {
    background: linear-gradient(135deg, #1e293b, #0f172a); /* 🔥 oscuro elegante */
    color: #e2e8f0;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}

    /* HOVER */
    .btn-pos-secondary:hover[b-c24zaul2c6] {
        transform: translateY(-2px) scale(1.02);
        background: linear-gradient(135deg, #334155, #1e293b);
        box-shadow: 0 10px 25px rgba(0,0,0,0.45);
    }

    /* ACTIVE */
    .btn-pos-secondary:active[b-c24zaul2c6] {
        transform: scale(0.96);
    }

    /* EFECTO BRILLO SUAVE */
    .btn-pos-secondary[b-c24zaul2c6]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.15), transparent );
    }

    .btn-pos-secondary:hover[b-c24zaul2c6]::before {
        animation: shine-b-c24zaul2c6 0.6s ease;
    }

.btn-pos-danger[b-c24zaul2c6] {
    background: linear-gradient(135deg, #ff1744, #d50000);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(255, 23, 68, 0.25);
}

    .btn-pos-danger:hover[b-c24zaul2c6] {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 28px rgba(255, 23, 68, 0.35);
    }

.btn-pos-secondary:hover[b-c24zaul2c6] {
    border: 1px solid rgba(0,245,212,0.3);
}

/* =========================
   POS OVERLAY (INSCRIPCIÓN)
========================= */

.pos-overlay[b-c24zaul2c6] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}

/* TICKET POS */
.ticket[b-c24zaul2c6] {
    width: 380px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popIn-b-c24zaul2c6 0.3s ease;
    font-family: monospace;
}

.ticket-header[b-c24zaul2c6] {
    background: black;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.ticket-body[b-c24zaul2c6] {
    padding: 16px;
}

/* STEPS */
.step[b-c24zaul2c6] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    opacity: 0.5;
    transition: all .3s ease;
}

    .step.done[b-c24zaul2c6] {
        opacity: 1;
        transform: translateX(4px);
    }

.check[b-c24zaul2c6] {
    color: green;
    font-weight: bold;
}

.dot[b-c24zaul2c6] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: gray;
}

/* PROGRESS BAR */
.progress-bar[b-c24zaul2c6] {
    height: 8px;
    background: #eee;
    border-radius: 20px;
    margin-top: 12px;
    overflow: hidden;
}

.progress[b-c24zaul2c6] {
    height: 100%;
    background: linear-gradient(90deg,#00c853,#64dd17);
    transition: width .3s ease;
}

/* STATUS */
.status[b-c24zaul2c6] {
    margin-top: 10px;
    font-size: 12px;
    color: #444;
    text-align: center;
}

/* FOOTER RESULT */
.ticket-footer[b-c24zaul2c6] {
    padding: 10px;
    text-align: center;
}

.success[b-c24zaul2c6] {
    color: green;
    font-weight: bold;
}

.error[b-c24zaul2c6] {
    color: red;
    font-weight: bold;
}

/* ANIMATION */
@keyframes popIn-b-c24zaul2c6 {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* =========================
   WIZARD NAV CONTAINER
========================= */

.wizard-nav[b-c24zaul2c6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
}

    /* =========================
   BOTÓN BASE
========================= */

    .wizard-nav button[b-c24zaul2c6] {
        position: relative;
        padding: 11px 18px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.08);
        cursor: pointer;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.25s ease;
        color: #e5e7eb;
        background: rgba(255,255,255,0.04);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        overflow: hidden;
    }

        /* efecto brillo */
        .wizard-nav button[b-c24zaul2c6]::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient( 120deg, transparent, rgba(0,245,212,0.15), transparent );
            transition: 0.5s;
        }

        .wizard-nav button:hover[b-c24zaul2c6]::before {
            left: 100%;
        }

        /* hover base */
        .wizard-nav button:hover[b-c24zaul2c6] {
            transform: translateY(-2px);
            border-color: rgba(0,245,212,0.4);
            box-shadow: 0 12px 30px rgba(0,245,212,0.15);
        }

        /* active */
        .wizard-nav button:active[b-c24zaul2c6] {
            transform: scale(0.97);
        }

        /* =========================
   PRIMARY
========================= */

        .wizard-nav button.primary[b-c24zaul2c6] {
            background: linear-gradient(135deg, #00f5d4, #00bbf9);
            color: #0b1220;
            border: none;
            box-shadow: 0 10px 25px rgba(0,245,212,0.25);
        }

            .wizard-nav button.primary:hover[b-c24zaul2c6] {
                transform: translateY(-2px) scale(1.02);
                box-shadow: 0 15px 35px rgba(0,245,212,0.35);
            }

        /* =========================
   SECONDARY (CORREGIDO 🔥)
========================= */

        .wizard-nav button.secondary[b-c24zaul2c6] {
            background: linear-gradient(135deg, #00f5d4, #00bbf9);
            color: #0b1220;
            border: 1px solid rgba(148,163,184,0.2);
            box-shadow: 0 6px 18px rgba(0,0,0,0.35);
        }

            /* HOVER */
            .wizard-nav button.secondary:hover[b-c24zaul2c6] {
                background: linear-gradient(135deg, #00f5d4, #00bbf9);
                color: #e2e8f0;
                border-color: rgba(0,245,212,0.3);
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(0,0,0,0.45);
            }

            /* ACTIVE */
            .wizard-nav button.secondary:active[b-c24zaul2c6] {
                transform: scale(0.96);
            }

        /* DISABLED 🔥 (MUY IMPORTANTE) */
        .wizard-nav button:disabled[b-c24zaul2c6] {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

/* =========================
   ALERTA
========================= */

.alert-light-danger[b-c24zaul2c6] {
    margin-top: 15px;
    background: rgba(255, 59, 48, 0.12);
    border: 1px solid rgba(255, 59, 48, 0.35);
    color: #ff4d4d;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(255, 59, 48, 0.08);
    animation: alertIn-b-c24zaul2c6 0.25s ease;
}

@keyframes alertIn-b-c24zaul2c6 {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   ANIMACIÓN STEP
========================= */

.fade-in[b-c24zaul2c6] {
    animation: fadeInUp-b-c24zaul2c6 0.4s ease;
}

@keyframes fadeInUp-b-c24zaul2c6 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   OVERLAY (FONDO DIFUMINADO)
========================= */
.modal-overlay[b-c24zaul2c6] {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn-b-c24zaul2c6 0.3s ease;
}

/* =========================
   CAJA DEL MODAL
========================= */
.modal-box[b-c24zaul2c6] {
    width: 420px;
    max-width: 90%;
    background: linear-gradient(145deg, #0f172a, #020617);
    border-radius: 18px;
    padding: 25px 22px;
    color: #e5e7eb;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    animation: modalPop-b-c24zaul2c6 0.35s cubic-bezier(.22,.61,.36,1);
}

    /* BORDE GLASS */
    .modal-box[b-c24zaul2c6]::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(0,245,212,0.5), transparent);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        pointer-events: none;
    }

    /* =========================
   TITULO
========================= */
    .modal-box h3[b-c24zaul2c6] {
        font-size: 18px;
        margin-bottom: 10px;
        color: #f8fafc;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* =========================
   TEXTO
========================= */
    .modal-box p[b-c24zaul2c6] {
        font-size: 14px;
        color: #94a3b8;
        margin-bottom: 20px;
        line-height: 1.5;
    }

/* =========================
   BOTONES
========================= */
.modal-actions[b-c24zaul2c6] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

    /* BOTÓN CANCELAR */
    .modal-actions button:first-child[b-c24zaul2c6] {
        background: transparent;
        border: 1px solid rgba(148,163,184,0.3);
        color: #94a3b8;
        padding: 8px 14px;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.25s;
    }

        .modal-actions button:first-child:hover[b-c24zaul2c6] {
            background: rgba(148,163,184,0.1);
            color: #e5e7eb;
        }

    /* BOTÓN CONFIRMAR */
    .modal-actions button:last-child[b-c24zaul2c6] {
        background: linear-gradient(135deg, #00f5d4, #00bbf9);
        border: none;
        color: #020617;
        padding: 8px 16px;
        border-radius: 10px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.25s ease;
        position: relative;
        overflow: hidden;
    }

        /* EFECTO BRILLO */
        .modal-actions button:last-child[b-c24zaul2c6]::before {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
        }

        .modal-actions button:last-child:hover[b-c24zaul2c6]::before {
            animation: shine-b-c24zaul2c6 0.6s ease;
        }

        .modal-actions button:last-child:hover[b-c24zaul2c6] {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,245,212,0.3);
        }

        .modal-actions button:last-child:active[b-c24zaul2c6] {
            transform: scale(0.96);
        }

/* =========================
   ANIMACIONES
========================= */
@keyframes modalPop-b-c24zaul2c6 {
    0% {
        transform: scale(0.85) translateY(20px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn-b-c24zaul2c6 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shine-b-c24zaul2c6 {
    0% {
        left: -120%;
    }

    100% {
        left: 200%;
    }
}







/* CONTENEDOR */
.timeline-clean[b-c24zaul2c6] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* STEP */
.timeline-step[b-c24zaul2c6] {
    display: flex;
    align-items: center;
    position: relative;
}

/* CÍRCULO BASE */
.circle[b-c24zaul2c6] {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #334155;
    transition: all 0.3s ease;
}

    /* ACTIVO (🔥 glow) */
    .circle.active[b-c24zaul2c6] {
        background: #00f5d4;
        transform: scale(1.2);
        animation: pulseGlow-b-c24zaul2c6 1.2s infinite;
    }

    /* COMPLETADO */
    .circle.done[b-c24zaul2c6] {
        background: #22c55e;
    }

/* LÍNEA */
.line[b-c24zaul2c6] {
    width: 40px;
    height: 3px;
    background: #334155;
    margin: 0 6px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    /* LÍNEA COMPLETADA */
    .line.done[b-c24zaul2c6] {
        background: #22c55e;
    }

/* TEXTO */
.step-label[b-c24zaul2c6] {
    margin-left: 8px;
    min-width: 160px;
}

/* TITULO */
.step-title[b-c24zaul2c6] {
    font-size: 11px;
    font-weight: bold;
    color: #94a3b8;
}

/* MENSAJE */
.step-msg[b-c24zaul2c6] {
    font-size: 12px;
    color: #0f172a;
    font-weight: 500;
}

/* BOTÓN RESET PRO */
.btn-reset-container[b-c24zaul2c6] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.btn-reset[b-c24zaul2c6] {
    margin-top: 25px;
    padding: 12px 22px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    color: #0b1220;
    background: linear-gradient(135deg, #00f5d4, #00bbf9);
    box-shadow: 0 10px 25px rgba(0,245,212,0.25);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .btn-reset:hover[b-c24zaul2c6] {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0,245,212,0.35);
    }

    .btn-reset:active[b-c24zaul2c6] {
        transform: scale(0.96);
    }

    /* efecto brillo */
    .btn-reset[b-c24zaul2c6]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    }

    .btn-reset:hover[b-c24zaul2c6]::before {
        animation: shine-b-c24zaul2c6 0.6s ease;
    }



@keyframes pulseGlow-b-c24zaul2c6 {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 245, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 245, 212, 0);
    }
}

.timeline-step .circle.active + .line + .step-label .step-msg[b-c24zaul2c6] {
    color: #00f5d4;
    font-weight: 600;
}

.step-wrapper[b-c24zaul2c6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* LABEL */
.step-label[b-c24zaul2c6] {
    font-size: 11px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

/* LABEL ACTIVO */
.step-item.active + .step-label[b-c24zaul2c6] {
    color: #00f5d4;
    font-weight: 600;
}
/* /Components/Pages/Escuela/Kardex-alumno.razor.rz.scp.css */
.kardex-page[b-cgivkhxll0] {
    padding: 1.4rem;
    min-height: 100vh;
    background: #f0f1f6;
    margin-bottom:80px;
}

.page-header[b-cgivkhxll0] {
    margin-bottom: 1.2rem;
}

    .page-header h1[b-cgivkhxll0] {
        margin: 0;
        font-size: 1.7rem;
        font-weight: 800;
        background: linear-gradient(90deg, rgb(0,36,77), rgb(0,48,130));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.kardex-section[b-cgivkhxll0] {
    margin-top: 1rem;
}

@media(max-width:768px) {

    .kardex-page[b-cgivkhxll0] {
        padding: 1rem;
    }
}
/* /Components/Pages/Escuela/Listado-solicitudes.razor.rz.scp.css */
.solicitudes-page[b-p7kv55r1un] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: #F4F7FB;
    min-height: 100vh;
}

/* HEADER */

.page-header[b-p7kv55r1un] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .page-header h1[b-p7kv55r1un] {
        margin: 0;
        font-size: 30px;
        font-weight: 800;
        color: #24324A;
    }

    .page-header p[b-p7kv55r1un] {
        margin-top: 6px;
        color: #64748B;
        font-size: 15px;
    }

/* CARDS */

.filters-card[b-p7kv55r1un],
.table-card[b-p7kv55r1un] {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04), 0 2px 4px rgba(15, 23, 42, 0.03);
}

/* GRID FILTROS */

.filters-grid[b-p7kv55r1un] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 18px;
}

.form-group[b-p7kv55r1un] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label[b-p7kv55r1un] {
        font-size: 14px;
        font-weight: 600;
        color: #475569;
    }

/* INPUTS */

.input[b-p7kv55r1un] {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1E293B;
    outline: none;
    transition: .25s ease;
}

    .input:focus[b-p7kv55r1un] {
        border-color: #6366F1;
        background: #FFFFFF;
        box-shadow: 0 0 0 4px rgba(99,102,241,.12);
    }

/* BOTONES */

.filters-actions[b-p7kv55r1un] {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.btn-search[b-p7kv55r1un],
.btn-clear[b-p7kv55r1un],
.btn-refresh[b-p7kv55r1un] {
    border: none;
    border-radius: 14px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.btn-search[b-p7kv55r1un] {
    background: linear-gradient(135deg,#6366F1,#8B5CF6);
    color: white;
}

    .btn-search:hover[b-p7kv55r1un] {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(99,102,241,.22);
    }

.btn-clear[b-p7kv55r1un] {
    background: #E2E8F0;
    color: #334155;
}

    .btn-clear:hover[b-p7kv55r1un] {
        background: #CBD5E1;
    }

.btn-refresh[b-p7kv55r1un] {
    background: #EEF2FF;
    color: #4F46E5;
}

    .btn-refresh:hover[b-p7kv55r1un] {
        background: #E0E7FF;
    }

/* TABLA */

.table-responsive[b-p7kv55r1un] {
    overflow-x: auto;
}

.table[b-p7kv55r1un] {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
}

    .table thead[b-p7kv55r1un] {
        background: #F8FAFC;
    }

    .table th[b-p7kv55r1un] {
        padding: 16px;
        text-align: left;
        font-size: 13px;
        font-weight: 700;
        color: #475569;
        border-bottom: 1px solid #E2E8F0;
        white-space: nowrap;
    }

    .table td[b-p7kv55r1un] {
        padding: 16px;
        font-size: 14px;
        color: #334155;
        border-bottom: 1px solid #F1F5F9;
        white-space: nowrap;
    }

    .table tbody tr[b-p7kv55r1un] {
        transition: .2s ease;
    }

        .table tbody tr:hover[b-p7kv55r1un] {
            background: #F8FAFF;
        }

/* FOLIO */

.folio[b-p7kv55r1un] {
    color: #6366F1;
    font-weight: 700;
}

/* ESTATUS */

.estatus[b-p7kv55r1un] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

    /* PENDIENTE */

    .estatus.pending[b-p7kv55r1un] {
        background: #FEF3C7;
        color: #B45309;
    }

    /* VALIDADO */

    .estatus.ok[b-p7kv55r1un] {
        background: #DCFCE7;
        color: #15803D;
    }

    /* RECHAZADO */

    .estatus.bad[b-p7kv55r1un] {
        background: #FEE2E2;
        color: #B91C1C;
    }

    /* ENVIADO */

    .estatus.info[b-p7kv55r1un] {
        background: #DBEAFE;
        color: #1D4ED8;
    }

/* LOADING */

.loading[b-p7kv55r1un],
.empty[b-p7kv55r1un] {
    padding: 50px;
    text-align: center;
    color: #64748B;
    font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .solicitudes-page[b-p7kv55r1un] {
        padding: 14px;
    }

    .page-header[b-p7kv55r1un] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .filters-actions[b-p7kv55r1un] {
        flex-direction: column;
    }

    .btn-search[b-p7kv55r1un],
    .btn-clear[b-p7kv55r1un],
    .btn-refresh[b-p7kv55r1un] {
        width: 100%;
    }
}
/* /Components/Pages/Escuela/Listado_alumnos.razor.rz.scp.css */
/* /Components/Pages/Escuela/Promocion_grupo.razor.rz.scp.css */
/* =========================
   CONTENEDOR GENERAL
========================= */
.promo-container[b-zpc14put6m] {
    padding: 20px;
    background: #f1f5f9;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

/* =========================
   SECCIONES
========================= */
.section[b-zpc14put6m] {
    margin-bottom: 20px;
}

    .section h3[b-zpc14put6m] {
        margin-bottom: 10px;
        color: #1e293b;
    }

/* =========================
   GRID CARDS
========================= */
.cards-grid[b-zpc14put6m] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

/* =========================
   CARD BASE
========================= */
.card[b-zpc14put6m] {
    padding: 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .card:hover[b-zpc14put6m] {
        transform: translateY(-4px);
        border-color: #38bdf8;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .card.active[b-zpc14put6m] {
        border: 2px solid #0ea5e9;
        background: #e0f2fe;
    }

/* =========================
   PILLS
========================= */
.pill-container[b-zpc14put6m] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill[b-zpc14put6m] {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #cbd5f5;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s ease;
}

    .pill:hover[b-zpc14put6m] {
        background: #f1f5f9;
    }

    .pill.active[b-zpc14put6m] {
        background: #0ea5e9;
        border-color: #0ea5e9;
        color: white;
    }

/* =========================
   PROMO GRID
========================= */
.promo-grid[b-zpc14put6m] {
    display: grid;
    grid-template-columns: 1fr 140px 1fr;
    gap: 20px;
    margin-top: 20px;
}

/* =========================
   PANEL
========================= */
.panel[b-zpc14put6m] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px;
    max-height: 480px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   SCROLL
========================= */
.scroll[b-zpc14put6m] {
    margin-top: 10px;
}

/* =========================
   ALUMNO CARD BASE
========================= */
.alumno-card[b-zpc14put6m] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .alumno-card:hover[b-zpc14put6m] {
        transform: translateX(6px);
    }

    /* =========================
   SELECCIONADO
========================= */
    .alumno-card.selected[b-zpc14put6m] {
        background: rgba(14,165,233,0.2);
        border: 1px solid #0ea5e9;
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(14,165,233,0.3);
    }

    /* =========================
   NO PROMOVIDO
========================= */
    .alumno-card.disabled[b-zpc14put6m] {
        opacity: 0.5;
        pointer-events: none;
        border: 1px dashed #94a3b8;
    }

    /* =========================
   DESTINO NORMAL
========================= */
    .alumno-card.destiny[b-zpc14put6m] {
        background: #ecfdf5;
        border: 1px solid #22c55e;
        animation: popIn-b-zpc14put6m 0.25s ease;
    }

        /* =========================
   🔥 DESTINO IRREGULAR (SIEMPRE GANA)
========================= */
        .alumno-card.destiny.irregular[b-zpc14put6m] {
            background: #ffe4e6 !important;
            border: 1px solid #ef4444 !important;
            color: #7f1d1d;
            box-shadow: 0 6px 18px rgba(239,68,68,0.25);
        }

            .alumno-card.destiny.irregular .badge[b-zpc14put6m] {
                background: #ef4444;
                color: white;
            }

    /* =========================
   ORIGEN IRREGULAR
========================= */
    .alumno-card.irregular:not(.destiny)[b-zpc14put6m] {
        border-left: 4px solid #f59e0b;
    }

    /* =========================
   ORIGEN IRREGULAR + SELECTED
========================= */
    .alumno-card.irregular.selected:not(.destiny)[b-zpc14put6m] {
        background: #fff7ed;
        border: 1px solid #f59e0b;
    }

/* =========================
   AVATAR
========================= */
.avatar[b-zpc14put6m] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* =========================
   BADGES
========================= */
.badge[b-zpc14put6m] {
    font-size: 11px;
    margin-top: 3px;
    padding: 2px 6px;
    border-radius: 6px;
    background: #fef3c7;
    color: #92400e;
    display: inline-block;
}

/* =========================
   BOTONES
========================= */
.actions[b-zpc14put6m] {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-select-all[b-zpc14put6m] {
    padding: 8px 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #22c55e);
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

    .btn-select-all:hover[b-zpc14put6m] {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(37,99,235,0.4);
    }

.btn-clear[b-zpc14put6m] {
    padding: 8px 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #64748b, #1e293b);
    color: white;
    font-size: 12px;
    cursor: pointer;
}

    .btn-clear:hover[b-zpc14put6m] {
        transform: translateY(-2px);
    }

/* =========================
   BOTÓN PROMOCIÓN
========================= */
.center-actions[b-zpc14put6m] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promote-btn[b-zpc14put6m] {
    padding: 16px 24px;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #6366f1, #22c55e);
    box-shadow: 0 12px 30px rgba(34,197,94,0.3);
    transition: all .25s ease;
}

    .promote-btn:hover[b-zpc14put6m] {
        transform: translateY(-4px) scale(1.05);
    }

    .promote-btn:disabled[b-zpc14put6m] {
        opacity: 0.4;
        cursor: not-allowed;
    }

/* =========================
   🔥 ANIMACIÓN FLY
========================= */
.fly-clone[b-zpc14put6m] {
    position: fixed;
    top: 50%;
    left: 25%;
    z-index: 9999;
    pointer-events: none;
}

.animate-fly[b-zpc14put6m] {
    animation: flyMove-b-zpc14put6m 0.4s ease-out forwards;
}

@keyframes flyMove-b-zpc14put6m {
    0% {
        transform: translate(0,0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(300px,-30px) scale(1.05);
    }

    100% {
        transform: translate(650px,10px) scale(.6);
        opacity: 0;
    }
}

/* =========================
   ENTRADA DESTINO
========================= */
@keyframes popIn-b-zpc14put6m {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
   LOADER
========================= */
.loading-modal[b-zpc14put6m] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner[b-zpc14put6m] {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,255,255,0.2);
    border-top: 5px solid #22c55e;
    border-radius: 50%;
    animation: spin-b-zpc14put6m 1s linear infinite;
}

@keyframes spin-b-zpc14put6m {
    to {
        transform: rotate(360deg);
    }
}

/* =========================
   MODAL
========================= */
.modal-overlay[b-zpc14put6m] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box[b-zpc14put6m] {
    width: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalIn-b-zpc14put6m .3s ease;
}

@keyframes modalIn-b-zpc14put6m {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-close[b-zpc14put6m] {
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border: none;
    color: white;
    cursor: pointer;
}
/* /Components/Pages/Escuela/Solicitud-examen.razor.rz.scp.css */
/* =========================
   PAGE
========================= */

.solicitud-page[b-aovc5eoow5] {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
}

/* =========================
   ALERTAS
========================= */

.alert-custom[b-aovc5eoow5] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    animation: fadeIn-b-aovc5eoow5 .25s ease;
    box-sizing: border-box;
}

    .alert-custom span:first-child[b-aovc5eoow5] {
        font-size: 22px;
    }

    /* WARNING */

    .alert-custom.warning[b-aovc5eoow5] {
        background: rgba(255, 193, 7, 0.10);
        border: 1px solid rgba(255, 193, 7, 0.25);
        color: #9a6700;
    }

    /* DANGER */

    .alert-custom.danger[b-aovc5eoow5] {
        background: rgba(220, 53, 69, 0.10);
        border: 1px solid rgba(220, 53, 69, 0.20);
        color: #b42318;
    }

/* =========================
   CONTENIDO
========================= */

.contenido-grid[b-aovc5eoow5] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

    /* =========================
   COMPONENTES
========================= */

    .contenido-grid > *[b-aovc5eoow5] {
        width: 100%;
        background: #ffffff;
        border-radius: 22px;
        padding: 22px;
        box-sizing: border-box;
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
        animation: fadeIn-b-aovc5eoow5 .25s ease;
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .solicitud-page[b-aovc5eoow5] {
        padding: 12px;
    }

    .contenido-grid > *[b-aovc5eoow5] {
        padding: 18px;
        border-radius: 18px;
    }

    .alert-custom[b-aovc5eoow5] {
        font-size: 14px;
    }
}

/* =========================
   ANIMACION
========================= */

@keyframes fadeIn-b-aovc5eoow5 {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Pages/Escuela/Solicitud_certificacion.razor.rz.scp.css */
/* STEPS */
.wizard-steps[b-wy1svpnrev] {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.step[b-wy1svpnrev] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: 0.3s;
}

    .step.active[b-wy1svpnrev] {
        background: #1d4ed8;
        color: white;
        transform: scale(1.05);
    }

    .step.completed[b-wy1svpnrev] {
        background: #22c55e;
        color: white;
    }

/* CONTROLES */
.wizard-actions[b-wy1svpnrev] {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-secondary[b-wy1svpnrev] {
    background: #e5e7eb;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-primary[b-wy1svpnrev] {
    background: #1d4ed8;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

    .btn-primary:disabled[b-wy1svpnrev] {
        background: #93c5fd;
        cursor: not-allowed;
    }


.btn-success[b-wy1svpnrev] {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 8px 18px rgba(34,197,94,0.25);
}

    .btn-success:hover[b-wy1svpnrev] {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(34,197,94,0.35);
    }

    .btn-success:disabled[b-wy1svpnrev] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.alert-ok[b-wy1svpnrev] {
    margin-top: 20px;
    background: #dcfce7;
    color: #166534;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    font-weight: 600;
    margin-bottom:100px;
}
/* /Components/Pages/Inicio.razor.rz.scp.css */
/* ==========================================
   CONTENEDOR GENERAL
========================================== */

.dashboard-title[b-9ev6y1nx7x] {
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 35px;
}

/* ==========================================
   FILTRO
========================================== */

.filtros-card[b-9ev6y1nx7x] {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 30px;
    margin-bottom: 45px;
    box-shadow: 0 15px 40px rgba(15,23,42,.06);
}

    .filtros-card .form-label[b-9ev6y1nx7x] {
        font-size: .90rem;
        font-weight: 700;
        color: #334155;
        margin-bottom: 10px;
    }

/* SELECT PREMIUM */

.form-select[b-9ev6y1nx7x] {
    height: 58px;
    border-radius: 18px;
    border: 2px solid #E2E8F0;
    background-color: #FFF;
    font-size: .95rem;
    font-weight: 500;
    color: #0F172A;
    padding-left: 18px;
    transition: all .25s ease;
}

    .form-select:hover[b-9ev6y1nx7x] {
        border-color: #CBD5E1;
    }

    .form-select:focus[b-9ev6y1nx7x] {
        border-color: #2563EB;
        box-shadow: 0 0 0 5px rgba(37,99,235,.12);
        outline: none;
    }

/* ==========================================
   ESPACIADO ENTRE CARDS
========================================== */

.resumen-row[b-9ev6y1nx7x] {
    row-gap: 24px;
    margin-bottom: 45px;
}

/* ==========================================
   CARDS PREMIUM
========================================== */

.stat-card[b-9ev6y1nx7x] {
    position: relative;
    background: #FFFFFF;
    border-radius: 28px;
    padding: 28px;
    min-height: 135px;
    overflow: hidden;
    transition: .30s;
    box-shadow: 0 15px 35px rgba(15,23,42,.06);
    border: 1px solid #F1F5F9;
}

    .stat-card:hover[b-9ev6y1nx7x] {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(15,23,42,.12);
    }

    .stat-card[b-9ev6y1nx7x]::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        transform: translate(40px,-40px);
    }

    /* COLORES */

    .stat-card.success[b-9ev6y1nx7x]::after {
        background: rgba(34,197,94,.12);
    }

    .stat-card.warning[b-9ev6y1nx7x]::after {
        background: rgba(249,115,22,.12);
    }

    .stat-card.info[b-9ev6y1nx7x]::after {
        background: rgba(37,99,235,.12);
    }

/* CONTENIDO */

.stat-label[b-9ev6y1nx7x] {
    color: #64748B;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.stat-value[b-9ev6y1nx7x] {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

/* ==========================================
   TABLA
========================================== */

.table-card[b-9ev6y1nx7x] {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15,23,42,.06);
    margin-bottom:110px;
}

.table-header[b-9ev6y1nx7x] {
    padding: 22px 28px;
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    border-bottom: 1px solid #E2E8F0;
    background: #FAFBFC;
}

.table[b-9ev6y1nx7x] {
    margin-bottom: 0;
}

    .table thead[b-9ev6y1nx7x] {
        background: linear-gradient( 135deg, #0F172A, #1E293B );
    }

        .table thead th[b-9ev6y1nx7x] {
            color: white;
            border: none;
            padding: 18px 20px;
            font-size: .80rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

    .table tbody td[b-9ev6y1nx7x] {
        padding: 18px 20px;
        vertical-align: middle;
        border-color: #F1F5F9;
    }

    .table tbody tr[b-9ev6y1nx7x] {
        transition: .25s;
    }

        .table tbody tr:hover[b-9ev6y1nx7x] {
            background: #F8FAFC;
        }

/* ==========================================
   PROGRESS
========================================== */

.progress[b-9ev6y1nx7x] {
    height: 30px;
    background: #E2E8F0;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar[b-9ev6y1nx7x] {
    background: linear-gradient( 135deg, #22C55E, #16A34A );
    font-size: .80rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   LOADING
========================================== */

.loading-container[b-9ev6y1nx7x] {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   SIN DATOS
========================================== */

.sin-datos[b-9ev6y1nx7x] {
    background: white;
    border-radius: 28px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15,23,42,.06);
}

.sin-datos-icon[b-9ev6y1nx7x] {
    font-size: 4rem;
    margin-bottom: 15px;
}


.welcome-panel[b-9ev6y1nx7x] {
    max-width: 850px;
    margin: 80px auto;
    padding: 3rem;
    text-align: center;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 10px 30px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    transition: all .3s ease;
}

    .welcome-panel:hover[b-9ev6y1nx7x] {
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    }

.welcome-icon[b-9ev6y1nx7x] {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 50%;
    background: linear-gradient( 135deg, #2563eb, #4f46e5 );
    color: white;
    box-shadow: 0 10px 25px rgba(37,99,235,.25);
}

.welcome-panel h2[b-9ev6y1nx7x] {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -.5px;
}

.welcome-panel p[b-9ev6y1nx7x] {
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.welcome-secondary[b-9ev6y1nx7x] {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: .95rem;
}

@media (max-width: 768px) {

    .welcome-panel[b-9ev6y1nx7x] {
        margin: 30px 15px;
        padding: 2rem;
    }

        .welcome-panel h2[b-9ev6y1nx7x] {
            font-size: 1.5rem;
        }

    .welcome-icon[b-9ev6y1nx7x] {
        width: 80px;
        height: 80px;
        font-size: 2.3rem;
    }
}
/* /Components/Pages/Subjefe/Planes-Estudio.razor.rz.scp.css */
/* ==========================================================
   TITULO
========================================================== */

.page-title[b-fzr0omq8ka] {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 25px;
}

/* ==========================================================
   FILTROS
========================================================== */

.filtros-card[b-fzr0omq8ka] {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,.04), 0 20px 35px rgba(0,0,0,.04);
}

    .filtros-card label[b-fzr0omq8ka] {
        color: #334155;
        font-weight: 600;
    }

.select-modern[b-fzr0omq8ka] {
    height: 54px;
    border-radius: 14px;
    border: 2px solid #E2E8F0;
    transition: .25s;
}

    .select-modern:focus[b-fzr0omq8ka] {
        border-color: #2563EB;
        box-shadow: 0 0 0 5px rgba(37,99,235,.12);
    }

/* ==========================================================
   CONTENEDOR MALLA
========================================================== */

.contenedor-malla[b-fzr0omq8ka] {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 20px;
    align-items: flex-start;
}

    .contenedor-malla[b-fzr0omq8ka]::-webkit-scrollbar {
        height: 10px;
    }

    .contenedor-malla[b-fzr0omq8ka]::-webkit-scrollbar-thumb {
        background: #CBD5E1;
        border-radius: 999px;
    }

/* ==========================================================
   SEMESTRES
========================================================== */

.columna-semestre[b-fzr0omq8ka] {
    min-width: 240px;
    max-width: 240px;
    flex-shrink: 0;
}

.header-semestre[b-fzr0omq8ka] {
    background: linear-gradient( 135deg, #2563EB, #06B6D4 );
    color: white;
    border-radius: 18px;
    text-align: center;
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: 0 10px 25px rgba(37,99,235,.18);
}

.numero-semestre[b-fzr0omq8ka] {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.titulo-semestre[b-fzr0omq8ka] {
    margin-top: 5px;
    font-size: .75rem;
    letter-spacing: 2px;
}

.total-materias[b-fzr0omq8ka] {
    margin-top: 8px;
    font-size: .80rem;
    opacity: .95;
}

/* ==========================================================
   MATERIAS
========================================================== */

.materias-semestre[b-fzr0omq8ka] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-materia-container[b-fzr0omq8ka] {
    position: relative;
}

.card-materia[b-fzr0omq8ka] {
    background: white;
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #06B6D4;
    transition: .2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

    .card-materia:hover[b-fzr0omq8ka] {
        transform: translateY(-3px);
        border-color: #2563EB;
        box-shadow: 0 15px 25px rgba(37,99,235,.12);
    }

.materia-clave[b-fzr0omq8ka] {
    display: inline-block;
    background: #DBEAFE;
    color: #1D4ED8;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: .70rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.materia-nombre[b-fzr0omq8ka] {
    color: #0F172A;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.3;
    min-height: 45px;
}

.materia-creditos[b-fzr0omq8ka] {
    margin-top: 8px;
    font-size: .75rem;
    color: #64748B;
}

/* ==========================================================
   POPUP
========================================================== */

.popup-editor-inline[b-fzr0omq8ka] {
    position: absolute;
    top: -35px;
    left: calc(100% + 20px);
    width: 300px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
    animation: popupIn-b-fzr0omq8ka .15s ease;
}

.popup-header[b-fzr0omq8ka] {
    background: linear-gradient( 135deg, #2563EB, #06B6D4 );
    color: white;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .popup-header h5[b-fzr0omq8ka] {
        margin: 0;
        font-size: .90rem;
        font-weight: 600;
    }

    .popup-header small[b-fzr0omq8ka] {
        font-size: .70rem;
        opacity: .8;
    }



.popup-body[b-fzr0omq8ka] {
    padding: 14px;
}

    .popup-body label[b-fzr0omq8ka] {
        font-size: .80rem;
        margin-bottom: 4px;
    }

.popup-footer[b-fzr0omq8ka] {
    padding: 12px 14px;
    background: #F8FAFC;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* ==========================================================
   INPUT
========================================================== */

.input-modern[b-fzr0omq8ka] {
    height: 42px;
    border-radius: 10px;
    font-size: .85rem;
    border: 2px solid #E2E8F0;
}

    .input-modern:focus[b-fzr0omq8ka] {
        border-color: #2563EB;
        box-shadow: 0 0 0 4px rgba(37,99,235,.12);
    }

/* ==========================================================
   BOTONES
========================================================== */

.btn-cancelar[b-fzr0omq8ka],
.btn-guardar[b-fzr0omq8ka] {
    padding: .55rem .9rem;
    font-size: .80rem;
    border-radius: 10px;
}

.btn-cerrar[b-fzr0omq8ka] {
    border: none;
    background: transparent;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.btn-cancelar[b-fzr0omq8ka] {
    border: none;
    background: #E2E8F0;
    color: #334155;
    padding: .75rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: .2s;
}

    .btn-cancelar:hover[b-fzr0omq8ka] {
        background: #CBD5E1;
    }

.btn-guardar[b-fzr0omq8ka] {
    border: none;
    color: white;
    padding: .75rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient( 135deg, #10B981, #059669 );
    transition: .2s;
}

    .btn-guardar:hover[b-fzr0omq8ka] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(16,185,129,.20);
    }

.popup-editor-inline[b-fzr0omq8ka]::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 45px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -3px 3px 5px rgba(0,0,0,.05);
}

/* ==========================================================
   ANIMACION
========================================================== */

@keyframes popupIn-b-fzr0omq8ka {

    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1400px) {

    .popup-editor-inline[b-fzr0omq8ka] {
        left: auto;
        right: calc(100% + 10px);
    }
}

@media(max-width:768px) {

    .columna-semestre[b-fzr0omq8ka] {
        min-width: 220px;
        max-width: 220px;
    }

    .popup-editor-inline[b-fzr0omq8ka] {
        position: fixed;
        top: 80px;
        left: 10px;
        right: 10px;
        width: auto;
    }
}


/* ==========================================
   SIN MALLA CURRICULAR
========================================== */

.sin-malla-card[b-fzr0omq8ka] {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    animation: fadeInCard-b-fzr0omq8ka .25s ease;
}

/* BANNER SUPERIOR */

.sin-malla-banner[b-fzr0omq8ka] {
    background: linear-gradient( 135deg, #DC2626, #EF4444 );
    color: white;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
}

.sin-malla-icono[b-fzr0omq8ka] {
    font-size: 1.5rem;
}

/* BODY */

.sin-malla-body[b-fzr0omq8ka] {
    padding: 35px;
}

    .sin-malla-body h3[b-fzr0omq8ka] {
        color: #0F172A;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .sin-malla-body p[b-fzr0omq8ka] {
        color: #64748B;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }

/* ALERTA */

.sin-malla-alerta[b-fzr0omq8ka] {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-left: 5px solid #EF4444;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.alerta-icono[b-fzr0omq8ka] {
    font-size: 2rem;
    flex-shrink: 0;
}

.sin-malla-alerta strong[b-fzr0omq8ka] {
    display: block;
    color: #991B1B;
    margin-bottom: 5px;
}

.sin-malla-alerta div[b-fzr0omq8ka] {
    color: #7F1D1D;
    line-height: 1.5;
}

/* ANIMACION */

@keyframes fadeInCard-b-fzr0omq8ka {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.loading-malla[b-fzr0omq8ka] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

    .loading-malla p[b-fzr0omq8ka] {
        margin-top: 20px;
        color: #64748B;
        font-size: 1rem;
        font-weight: 500;
    }
