@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Sora:wght@600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

/* ── Full-page shell ── */
.edb-fp-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    font-family: 'DM Sans', sans-serif;
    background: #f0f4ff;
    background-image: radial-gradient(ellipse at 10% 10%, rgba(99,102,241,0.14) 0%, transparent 55%), radial-gradient(ellipse at 90% 90%, rgba(56,189,248,0.14) 0%, transparent 55%);
}

/* ── Split card ── */
.edb-fp-card {
    display: flex;
    width: 100%;
    max-width: 820px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(80,80,200,0.16);
}

/* ── Left panel (school info) ── */
.edb-fp-left {
    width: 38%;
    flex-shrink: 0;
    background: linear-gradient(160deg, #6366f1 0%, #38bdf8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

    /* Decorative circles */
    .edb-fp-left::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.08);
        top: -60px;
        right: -60px;
    }

    .edb-fp-left::after {
        content: '';
        position: absolute;
        width: 160px;
        height: 160px;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.07);
        bottom: -40px;
        left: -40px;
    }

.edb-fp-logo-wrap {
    width: 90px;
    height: 90px;
    border-radius: 18px !important;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

    .edb-fp-logo-wrap img {
        max-width: 80px;
        max-height: 80px;
        object-fit: contain;
        border-radius: 14px !important;
    }

.edb-fp-school-name {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.edb-fp-school-tag {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    text-align: center;
    letter-spacing: .04em;
    position: relative;
    z-index: 1;
}

/* ── Right panel (form) ── */
.edb-fp-right {
    flex: 1;
    background: #fff;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Form header */
.edb-fp-form-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #6366f1, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 14px;
}

.edb-fp-form-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 4px;
}

.edb-fp-form-sub {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Input group */
.edb-fp-input-group {
    position: relative;
    margin-bottom: 16px;
}

    .edb-fp-input-group i {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        color: #a5b4fc;
        font-size: 16px;
        pointer-events: none;
    }

    .edb-fp-input-group input {
        width: 100%;
        padding: 11px 14px 11px 38px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        color: #1e1b4b;
        background: #f8f9ff;
        border: 1.5px solid rgba(99,102,241,0.2);
        border-radius: 10px !important;
        outline: none;
        transition: border-color .2s, box-shadow .2s;
    }

        .edb-fp-input-group input:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
            background: #fff;
        }

        .edb-fp-input-group input::placeholder {
            color: #9ca3af;
        }

/* Divider with OR */
.edb-fp-or {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 4px;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: .04em;
}

    .edb-fp-or::before,
    .edb-fp-or::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(99,102,241,0.15);
    }

/* Buttons */
.edb-fp-btn-primary {
    width: 100%;
    padding: 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #6366f1, #38bdf8);
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    animation: edb-fp-pulse 2s ease-in-out infinite;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

    .edb-fp-btn-primary:hover {
        opacity: .9;
    }

    .edb-fp-btn-primary:active {
        transform: scale(0.98);
    }

@keyframes edb-fp-pulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    }

    50% {
        box-shadow: 0 4px 22px rgba(99,102,241,0.50);
    }
}

.edb-fp-btn-secondary {
    width: 100%;
    padding: 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3730a3;
    background: #e0e7ff;
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
}

    .edb-fp-btn-secondary:hover {
        opacity: .88;
        text-decoration: none;
        color: #3730a3;
    }

    .edb-fp-btn-secondary:active {
        transform: scale(0.98);
    }

/* Two-button row */
.edb-fp-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

    .edb-fp-btn-row .edb-fp-btn-primary,
    .edb-fp-btn-row .edb-fp-btn-secondary {
        flex: 1;
        margin-top: 0;
    }

/* Error message */
.edb-fp-error {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #b91c1c;
    background: #fee2e2;
    border-left: 3px solid #f87171;
    border-radius: 0 8px 8px 0 !important;
    padding: 8px 12px;
    margin-bottom: 12px;
}

/* Validation message */
.edb-fp-val-msg {
    font-size: 11px;
    color: #b91c1c;
    margin-top: -10px;
    margin-bottom: 8px;
    padding-left: 4px;
}

/* Footer link */
.edb-fp-footer-link {
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

    .edb-fp-footer-link a {
        color: #6366f1;
        font-weight: 600;
        text-decoration: none;
    }

        .edb-fp-footer-link a:hover {
            text-decoration: underline;
        }

/* Verify sub-title */
.edb-fp-verify-msg {
    font-size: 13px;
    color: #6b7280;
    background: rgba(99,102,241,0.06);
    border-left: 3px solid #6366f1;
    border-radius: 0 8px 8px 0 !important;
    padding: 8px 12px;
    margin-bottom: 18px;
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .edb-fp-page {
        padding: 1rem 0.75rem;
    }

    .edb-fp-left {
        display: none;
    }

    .edb-fp-card {
        border-radius: 16px !important;
    }

    .edb-fp-right {
        padding: 2rem 1.5rem;
    }

    .edb-fp-btn-row {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .edb-fp-right {
        padding: 1.5rem 1.25rem;
    }

    .edb-fp-form-title {
        font-size: 19px;
    }
}


.lpsgs-content-area {
    padding: 0px !important;
}

.content {
    padding: 0px !important;
}

.editor-error {
    margin: 0px !important;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.mcl-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    font-family: 'DM Sans', sans-serif;
    background: #f0f4ff;
    background-image: radial-gradient(ellipse at 20% 20%, rgba(99,102,241,0.18) 0%, transparent 55%), radial-gradient(ellipse at 80% 80%, rgba(56,189,248,0.18) 0%, transparent 55%), radial-gradient(ellipse at 60% 10%, rgba(168,85,247,0.10) 0%, transparent 45%);
}

.mcl-card {
    display: flex;
    width: 100%;
    max-width: 720px;
    border-radius: 24px !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.75);
    box-shadow: 0 2px 0 rgba(255,255,255,0.9) inset, 0 20px 60px rgba(80,80,200,0.13), 0 4px 16px rgba(80,80,200,0.08);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ── Left panel ── */
.mcl-left {
    width: 38%;
    flex-shrink: 0;
    background: linear-gradient(155deg, #6366f1 0%, #818cf8 45%, #38bdf8 100%);
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

    .mcl-left::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.10);
    }

    .mcl-left::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 160px;
        height: 160px;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.08);
    }

.mcl-logo-ring {
    width: 206px;
    height: 100px;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .mcl-logo-ring img {
        /*max-width: 68px;*/
        max-height: 100px;
        object-fit: contain;
    }

.mcl-school-name {
    font-family: 'Sora',sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.mcl-school-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.78);
    text-align: center;
    position: relative;
    z-index: 1;
}

.mcl-pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mcl-pill {
    font-size: 11px;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 20px !important;
    padding: 3px 11px;
}

.mcl-steps {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 6px;
}

.mcl-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mcl-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50% !important;
    flex-shrink: 0;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

    .mcl-step-dot.done {
        background: rgba(255,255,255,0.50);
        color: #6366f1;
        border-color: transparent;
    }

    .mcl-step-dot.active {
        background: rgba(255,255,255,0.92);
        color: #6366f1;
        border-color: transparent;
        font-weight: 700;
    }

.mcl-step-label {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

    .mcl-step-label.muted {
        color: rgba(255,255,255,0.50);
    }

/* ── Right panel ── */
.mcl-right {
    flex: 1;
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255,255,255,0.72);
}

.mcl-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 4px;
}

.mcl-title {
    font-family: 'Sora',sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 20px;
}

/* Banners */
.mcl-banner {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-radius: 10px !important;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5;
}

    .mcl-banner.error {
        background: #fef2f2;
        border: 1px solid #fca5a5;
        color: #b91c1c;
    }

    .mcl-banner.success {
        background: #f0fdf4;
        border: 1px solid #86efac;
        color: #15803d;
    }

    .mcl-banner.info {
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        color: #1d4ed8;
    }

.mcl-banner-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Fields */
.mcl-field {
    margin-bottom: 14px;
}

.mcl-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 5px;
}

    .mcl-label .opt {
        color: #9ca3af;
        font-weight: 400;
    }

.mcl-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

    .mcl-input-wrap .mcl-ico {
        position: absolute;
        left: 12px;
        font-size: 17px;
        color: #a5b4fc;
        pointer-events: none;
    }

    .mcl-input-wrap input,
    .mcl-input-wrap .form-control {
        width: 100%;
        padding: 10px 12px 10px 38px;
        font-size: 14px;
        font-family: 'DM Sans',sans-serif;
        border: 1.5px solid #e0e7ff;
        border-radius: 10px !important;
        background: rgba(248,250,255,0.9);
        color: #1e1b4b;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .mcl-input-wrap input:focus,
        .mcl-input-wrap .form-control:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
            background: #fff;
        }

        .mcl-input-wrap input[readonly],
        .mcl-input-wrap .form-control[readonly] {
            background: #f1f5f9;
            color: #64748b;
            cursor: not-allowed;
        }

/* Validation error styles */
/*.editor-error,
.field-validation-error,
span.field-validation-error {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #dc2626 !important;
    margin-top: 5px;
    padding: 4px 8px;
    background: #fef2f2;
    border-radius: 6px !important;
    border-left: 3px solid #f87171 !important;
    box-shadow: none !important;
    line-height: 1.4;
}*/

.field-validation-valid, span.field-validation-valid {
    display: none !important;
}

.editor-error:empty {
    display: none;
}



.mcl-input-wrap input.input-validation-error,
.mcl-input-wrap .form-control.input-validation-error {
    border-color: #f87171 !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(248,113,113,0.15) !important;
}

/*.ui-state-error {
        background: #fef2f2 !important;
        border: none !important;
        border-left: 3px solid #f87171 !important;
        border-radius: 6px !important;
        padding: 4px 8px !important;
        color: #dc2626 !important;
        font-size: 12px !important;
        box-shadow: none !important;
        margin-top: 5px;
    }*/

.ui-corner-all {
    border-radius: 6px !important;
    background: none;
}

/* Captcha */
.mcl-captcha-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.mcl-captcha-img {
    flex-shrink: 0;
    border: 1.5px solid #c7d2fe;
    border-radius: 8px !important;
    overflow: hidden;
}

.mcl-captcha-refresh {
    background: none;
    border: 1.5px solid #e0e7ff;
    border-radius: 8px !important;
    padding: 6px 9px;
    cursor: pointer;
    color: #6366f1;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: background 0.15s;
}

    .mcl-captcha-refresh:hover {
        background: #eef2ff;
    }

.mcl-captcha-field {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
    font-family: 'DM Sans',sans-serif;
    border: 1.5px solid #e0e7ff;
    border-radius: 8px !important;
    background: rgba(248,250,255,0.9);
    color: #1e1b4b;
    outline: none;
}

    .mcl-captcha-field:focus {
        border-color: #6366f1;
    }

/* Buttons */
.mcl-btn-primary {
    width: 100%;
    padding: 11px;
    font-family: 'DM Sans',sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg,#6366f1 0%,#38bdf8 100%);
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(99,102,241,0.28);
}

    .mcl-btn-primary:hover {
        opacity: 0.92;
        box-shadow: 0 6px 20px rgba(99,102,241,0.35);
    }

    .mcl-btn-primary:active {
        transform: scale(0.985);
    }

.mcl-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: 'DM Sans',sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6366f1;
    background: #eef2ff;
    border: 1.5px solid #c7d2fe;
    border-radius: 10px !important;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

    .mcl-btn-secondary:hover {
        background: #e0e7ff;
        border-color: #a5b4fc;
        color: #4338ca;
    }

.mcl-btn-row {
    display: flex;
    gap: 10px;
}

    .mcl-btn-row .mcl-btn-primary,
    .mcl-btn-row .mcl-btn-secondary {
        flex: 1;
    }

.mcl-links {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mcl-link-row {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

    .mcl-link-row a {
        color: #6366f1;
        text-decoration: none;
        font-weight: 500;
    }

        .mcl-link-row a:hover {
            text-decoration: underline;
        }

.mcl-note {
    margin-top: 12px;
    font-size: 12px;
    color: #6b7280;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 10px 12px;
    line-height: 1.6;
}

@media (max-width:600px) {
    .mcl-left {
        display: none;
    }

    .mcl-right {
        padding: 2rem 1.5rem;
    }

    .mcl-card {
        border-radius: 20px !important;
    }

    .mcl-btn-row {
        flex-direction: column;
    }
}

@media (min-width:601px) and (max-width:820px) {
    .mcl-card {
        max-width: 90%;
    }
}

.lpsgs-content-area {
    padding: 0px !important;
}

.content {
    padding: 0px !important;
}

.editor-error {
    margin: 0px !important;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.mcl-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    font-family: 'DM Sans', sans-serif;
    background: #f0f4ff;
    background-image: radial-gradient(ellipse at 20% 20%, rgba(99,102,241,0.18) 0%, transparent 55%), radial-gradient(ellipse at 80% 80%, rgba(56,189,248,0.18) 0%, transparent 55%), radial-gradient(ellipse at 60% 10%, rgba(168,85,247,0.10) 0%, transparent 45%);
}

.mcl-card {
    display: flex;
    width: 100%;
    max-width: 720px;
    border-radius: 24px !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.75);
    box-shadow: 0 2px 0 rgba(255,255,255,0.9) inset, 0 20px 60px rgba(80,80,200,0.13), 0 4px 16px rgba(80,80,200,0.08);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ── Left panel ── */
.mcl-left {
    width: 38%;
    flex-shrink: 0;
    background: linear-gradient(155deg, #6366f1 0%, #818cf8 45%, #38bdf8 100%);
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

    .mcl-left::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.10);
    }

    .mcl-left::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 160px;
        height: 160px;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.08);
    }

.mcl-logo-ring {
    width: 206px;
    height: 100px;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

    .mcl-logo-ring img {
        /*max-width: 68px;*/
        max-height: 100px;
        /*border-radius: 50% !important;*/
        object-fit: contain;
    }

    .mcl-logo-ring .mcl-logo-fallback {
        font-size: 38px;
        color: rgba(255,255,255,0.9);
    }

.mcl-school-name {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.mcl-school-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.78);
    text-align: center;
    position: relative;
    z-index: 1;
}

.mcl-pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mcl-pill {
    font-size: 11px;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 20px !important;
    padding: 3px 11px;
}

/* ── Right panel ── */
.mcl-right {
    flex: 1;
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255,255,255,0.72);
}

.mcl-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 4px;
}

.mcl-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 22px;
}

/* Error banner */
.mcl-error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 10px !important;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #b91c1c;
    line-height: 1.5;
}

.mcl-error-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Info banner (ViewBag.Message) */
.mcl-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px !important;
    padding: 9px 14px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #1d4ed8;
}

/* Fields */
.mcl-field {
    margin-bottom: 16px;
}

.mcl-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
}

.mcl-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

    .mcl-input-wrap .mcl-ico {
        position: absolute;
        left: 12px;
        font-size: 17px;
        color: #a5b4fc;
        pointer-events: none;
    }

    .mcl-input-wrap input,
    .mcl-input-wrap .form-control {
        width: 100%;
        padding: 10px 12px 10px 38px;
        font-size: 14px;
        font-family: 'DM Sans', sans-serif;
        border: 1.5px solid #e0e7ff;
        border-radius: 10px !important;
        background: rgba(248,250,255,0.9);
        color: #1e1b4b;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .mcl-input-wrap input:focus,
        .mcl-input-wrap .form-control:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
            background: #fff;
        }

    .mcl-input-wrap .mcl-eye-btn {
        position: absolute;
        right: 10px;
        background: none;
        border: none;
        cursor: pointer;
        color: #9ca3af;
        font-size: 16px;
        display: flex;
        align-items: center;
        padding: 4px;
        border-radius: 6px !important;
        transition: color 0.15s;
    }

        .mcl-input-wrap .mcl-eye-btn:hover {
            color: #6366f1;
        }

/* ── Validation error messages ── */
/* MCampus renders validation into .editor-error and also span.field-validation-error */



/* Hide the span when it has no error text (valid state) */
.field-validation-valid,
span.field-validation-valid {
    display: none !important;
}

/* Empty editor-error div — hide it */
.editor-error:empty {
    display: none;
}

/* ── Input error state: red border when jQuery Validate adds .input-validation-error ── */
.mcl-input-wrap input.input-validation-error,
.mcl-input-wrap .form-control.input-validation-error {
    border-color: #f87171 !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(248,113,113,0.15) !important;
}

/* Also highlight the icon in red when field is invalid */
.mcl-input-wrap:has(input.input-validation-error) .mcl-ico,
.mcl-input-wrap:has(.form-control.input-validation-error) .mcl-ico {
    color: #f87171;
}

/* ── ui-state-error override (MCampus default) ── */
/*.ui-state-error {
    background: #fef2f2 !important;
    border: none !important;
    border-left: 3px solid #f87171 !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    color: #dc2626 !important;
    font-size: 12px !important;
    box-shadow: none !important;
    margin-top: 5px;
}*/

.ui-corner-all {
    border-radius: 6px !important;
}

/* Captcha */
.mcl-captcha-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mcl-captcha-img {
    flex-shrink: 0;
    border: 1.5px solid #c7d2fe;
    border-radius: 8px !important;
    overflow: hidden;
}

.mcl-captcha-refresh {
    background: none;
    border: 1.5px solid #e0e7ff;
    border-radius: 8px !important;
    padding: 6px 9px;
    cursor: pointer;
    color: #6366f1;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: background 0.15s;
}

    .mcl-captcha-refresh:hover {
        background: #eef2ff;
    }

.mcl-captcha-field {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    border: 1.5px solid #e0e7ff;
    border-radius: 8px !important;
    background: rgba(248,250,255,0.9);
    color: #1e1b4b;
    outline: none;
}

    .mcl-captcha-field:focus {
        border-color: #6366f1;
    }

/* Submit button */
.mcl-btn-submit {
    width: 100%;
    padding: 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #6366f1 0%, #38bdf8 100%);
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(99,102,241,0.28);
}

    .mcl-btn-submit:hover {
        opacity: 0.92;
        box-shadow: 0 6px 20px rgba(99,102,241,0.35);
    }

    .mcl-btn-submit:active {
        transform: scale(0.985);
    }

/* Secondary button (Generate Code) */
.mcl-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6366f1;
    background: #eef2ff;
    border: 1.5px solid #c7d2fe;
    border-radius: 10px !important;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

    .mcl-btn-secondary:hover {
        background: #e0e7ff;
        border-color: #a5b4fc;
        color: #4338ca;
    }

/* Login + Generate side by side */
.mcl-btn-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

    .mcl-btn-row .mcl-btn-submit {
        flex: 1;
    }

    .mcl-btn-row .mcl-btn-secondary {
        flex: 1;
        justify-content: center;
    }

/* Footer links */
.mcl-links {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mcl-link-line {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

    .mcl-link-line a {
        color: #6366f1;
        text-decoration: none;
        font-weight: 500;
    }

        .mcl-link-line a:hover {
            text-decoration: underline;
        }

/* Note box */
.mcl-note {
    margin-top: 12px;
    font-size: 12px;
    color: #6b7280;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 10px 12px;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .mcl-left {
        display: none;
    }

    .mcl-right {
        padding: 2rem 1.5rem;
    }

    .mcl-card {
        border-radius: 20px !important;
    }

    .mcl-btn-row {
        flex-direction: column;
    }
}

@media (min-width: 601px) and (max-width: 820px) {
    .mcl-card {
        max-width: 90%;
    }
}

/* Chaitanya school — eye toggle field */
.mcl-has-eye input {
    padding-right: 40px;
}

.lpsgs-content-area {
    padding: 0px !important;
}

.content {
    padding: 0px !important;
}

.modal-dialog {
    margin-top: 25mm;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.edb-page {
    min-height: 100vh;
    padding: 1.5rem 1rem 3rem;
    font-family: 'DM Sans', sans-serif;
    background: #f0f4ff;
    background-image: radial-gradient(ellipse at 10% 10%, rgba(99,102,241,0.12) 0%, transparent 50%), radial-gradient(ellipse at 90% 90%, rgba(56,189,248,0.12) 0%, transparent 50%);
}

/* ── Top bar ── */
.edb-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 16px !important;
    padding: 14px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(80,80,200,0.08);
}

.edb-topbar-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1e1b4b;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .edb-topbar-title .edb-icon-bg {
        width: 36px;
        height: 36px;
        border-radius: 10px !important;
        background: linear-gradient(135deg,#6366f1,#38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
    }

.edb-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.edb-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px !important;
    background: #bfdbfe;
    flex-shrink: 0;
}

.edb-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg,#6366f1,#38bdf8);
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    transition: opacity 0.2s, transform 0.15s;
    animation: edb-pulse 2s ease-in-out infinite;
}

    .edb-btn-new:hover {
        opacity: 0.9;
        color: #fff;
        text-decoration: none;
    }

    .edb-btn-new:active {
        transform: scale(0.97);
    }

@keyframes edb-pulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    }

    50% {
        box-shadow: 0 4px 22px rgba(99,102,241,0.50);
    }
}

/* ── Grid ── */
.edb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

/* ── Enquiry card ── */
.edb-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(80,80,200,0.09);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

    .edb-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(80,80,200,0.15);
    }

    /* Existing student card tint */
    .edb-card.existing {
        border-top: 4px solid #38bdf8;
        background: rgba(219,234,254,0.65);
    }

/* Card header strip */
.edb-card-header {
    padding: 14px 18px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(99,102,241,0.08);
}

.edb-card-num {
    width: 28px;
    height: 28px;
    border-radius: 8px !important;
    background: linear-gradient(135deg,#6366f1,#818cf8);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.edb-card-refno {
    font-size: 11px;
    color: #9ca3af;
    margin-left: auto;
    font-weight: 500;
}

/* Card body — two columns: profile | actions */
.edb-card-body {
    display: flex;
    gap: 0;
    flex: 1;
}

/* Left: student profile */
.edb-profile {
    width: 48%;
    padding: 16px 12px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(99,102,241,0.08);
    gap: 6px;
}

.edb-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50% !important;
    border: 3px solid #a5b4fc;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(99,102,241,0.18);
    margin-bottom: 4px;
}

.edb-student-name {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e1b4b;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.3;
}

.edb-meta {
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}

    .edb-meta span {
        display: block;
    }

/* Status badge */
.edb-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px !important;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

    .edb-badge.confirmed {
        background: #dcfce7;
        color: #15803d;
    }

    .edb-badge.closed {
        background: #fee2e2;
        color: #b91c1c;
    }

    .edb-badge.shortlist {
        background: #dbeafe;
        color: #1d4ed8;
    }

    .edb-badge.progress {
        background: #fef9c3;
        color: #92400e;
    }

/* Right: action buttons */
.edb-actions {
    flex: 1;
    padding: 14px 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: flex-start;
}

/* Action button base */
.edb-action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 9px !important;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    transition: filter 0.15s, transform 0.12s;
    line-height: 1.3;
}

    .edb-action-btn:hover {
        filter: brightness(0.93);
        text-decoration: none;
    }

    .edb-action-btn:active {
        transform: scale(0.97);
    }

    .edb-action-btn i {
        font-size: 13px;
        flex-shrink: 0;
    }

/* Colour variants */
.edb-btn-danger {
    background: #fee2e2;
    color: #b91c1c;
}

.edb-btn-info {
    background: #dbeafe;
    color: #1d4ed8;
}

.edb-btn-success {
    background: #dcfce7;
    color: #15803d;
}

.edb-btn-warning {
    background: #fef9c3;
    color: #78350f;
}

.edb-btn-primary {
    background: #e0e7ff;
    color: #3730a3;
}

.edb-btn-purple {
    background: #f3e8ff;
    color: #6d28d9;
}

/* Unsubmit remark */
.edb-remark {
    font-size: 11px;
    color: #b91c1c;
    background: #fff1f1;
    border-left: 3px solid #f87171;
    border-radius: 5px !important;
    padding: 5px 8px;
    margin-top: 2px;
    line-height: 1.4;
}

.edb-hint {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
    padding: 4px 0;
}

/* Empty state — new admission CTA */
.edb-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255,255,255,0.75);
    border-radius: 20px !important;
    border: 2px dashed #c7d2fe;
}

.edb-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50% !important;
    background: linear-gradient(135deg,#6366f1,#38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.edb-empty h3 {
    font-family: 'Sora',sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
}

.edb-empty p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Modals — upgrade the Bootstrap modal look */
.edb-modal .modal-content {
    border-radius: 16px !important;
    border: none !important;
    z-index: 1050 !important;
    box-shadow: 0 20px 60px rgba(80,80,200,0.18) !important;
    font-family: 'DM Sans', sans-serif !important;
}

.modal-backdrop {
    z-index: 0 !important;
}

.edb-modal .modal-header {
    background: linear-gradient(90deg,#6366f1,#38bdf8) !important;
    border-radius: 16px 16px 0 0 !important;
    padding: 14px 20px !important;
}

.edb-modal .modal-title {
    color: #fff !important;
    font-family: 'Sora',sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.edb-modal .close {
    color: #fff !important;
    opacity: 0.85 !important;
}

    .edb-modal .close:hover {
        opacity: 1 !important;
    }

@media (max-width: 600px) {
    .edb-grid {
        grid-template-columns: 1fr;
    }

    .edb-card-body {
        flex-direction: column;
    }

    .edb-profile {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(99,102,241,0.08);
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .edb-actions {
        padding: 12px 16px;
    }
}


*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #f0f4ff;
    background-image: radial-gradient(ellipse at 10% 10%, rgba(99,102,241,0.12) 0%, transparent 50%), radial-gradient(ellipse at 90% 90%, rgba(56,189,248,0.12) 0%, transparent 50%);
    margin: 0;
    padding: 0;
}

/* ── Page wrapper ── */
.edb-receipt-page {
    padding: 1.5rem 1rem 3rem;
    min-height: 100vh;
}

/* ── Top bar ── */
.edb-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 16px !important;
    padding: 14px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(80,80,200,0.08);
}

.edb-topbar-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1e1b4b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.edb-icon-bg {
    width: 36px;
    height: 36px;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #6366f1, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

/* ── Print button ── */
.edb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    text-decoration: none;
}

    .edb-btn:hover {
        opacity: .88;
        text-decoration: none;
    }

    .edb-btn:active {
        transform: scale(0.97);
    }

.edb-btn-primary {
    background: linear-gradient(90deg, #6366f1, #38bdf8);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    animation: edb-pulse 2s ease-in-out infinite;
}

@keyframes edb-pulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    }

    50% {
        box-shadow: 0 4px 22px rgba(99,102,241,0.50);
    }
}

/* ── Receipt card ── */
.edb-receipt-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(80,80,200,0.09);
    overflow: hidden;
    max-width: 780px;
    margin: 0 auto;
}

/* ── Receipt header (gradient) ── */
.edb-receipt-header {
    background: linear-gradient(90deg, #6366f1, #38bdf8);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.edb-school-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.edb-school-logo {
    width: 72px;
    height: 72px;
    border-radius: 14px !important;
    object-fit: contain;
    background: #fff;
    border: 3px solid rgba(255,255,255,0.6);
    flex-shrink: 0;
    padding: 4px;
}

.edb-school-logo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.2);
    border: 3px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.edb-school-text {
}

.edb-school-name {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.edb-school-address {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-top: 3px;
}

.edb-receipt-title-box {
    text-align: right;
}

.edb-receipt-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .03em;
    text-decoration: underline;
}

.edb-receipt-year {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* ── Meta info strip ── */
.edb-meta-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(99,102,241,0.1);
}

.edb-meta-cell {
    padding: 10px 24px;
    font-size: 13px;
    color: #374151;
    border-right: 1px dashed rgba(99,102,241,0.12);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .edb-meta-cell:last-child {
        border-right: none;
    }

    .edb-meta-cell:nth-child(n+3) {
        border-top: 1px dashed rgba(99,102,241,0.1);
    }

    .edb-meta-cell b {
        color: #6366f1;
        font-weight: 600;
        white-space: nowrap;
    }

/* ── Section header ── */
.edb-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(99,102,241,0.08), rgba(56,189,248,0.04));
    border-left: 4px solid #6366f1;
    padding: 9px 20px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1e1b4b;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ── Fees table ── */
.edb-fees-wrap {
    padding: 16px 24px 20px;
}

.edb-fees-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .edb-fees-table th {
        background: rgba(99,102,241,0.08);
        color: #3730a3;
        font-weight: 700;
        padding: 9px 14px;
        text-align: left;
        border: 1px solid rgba(99,102,241,0.15);
        font-size: 12px;
        font-family: 'Sora', sans-serif;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

        .edb-fees-table th.right {
            text-align: right;
        }

    .edb-fees-table td {
        padding: 9px 14px;
        border: 1px solid rgba(99,102,241,0.1);
        color: #1e1b4b;
        font-size: 13px;
        vertical-align: middle;
    }

        .edb-fees-table td.right {
            text-align: right;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }

    .edb-fees-table tr:hover td {
        background: rgba(99,102,241,0.03);
    }

    /* subtotal / total rows */
    .edb-fees-table tr.edb-subtotal td {
        background: rgba(99,102,241,0.05);
        font-weight: 600;
        color: #3730a3;
        font-size: 12px;
    }

    .edb-fees-table tr.edb-total td {
        background: linear-gradient(90deg, rgba(99,102,241,0.12), rgba(56,189,248,0.08));
        font-weight: 700;
        color: #1e1b4b;
        font-size: 14px;
        border-top: 2px solid #6366f1;
    }

/* ── Footer note ── */
.edb-receipt-footer {
    text-align: center;
    padding: 14px 24px 20px;
    font-size: 12px;
    color: #9ca3af;
    border-top: 1px dashed rgba(99,102,241,0.12);
    font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .edb-receipt-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .edb-receipt-title-box {
        text-align: left;
    }

    .edb-receipt-title {
        font-size: 16px;
    }

    .edb-meta-strip {
        grid-template-columns: 1fr;
    }

    .edb-meta-cell {
        border-right: none;
        border-top: 1px dashed rgba(99,102,241,0.1);
    }

        .edb-meta-cell:first-child {
            border-top: none;
        }

    .edb-fees-wrap {
        padding: 12px 14px 16px;
    }

    .edb-fees-table th,
    .edb-fees-table td {
        padding: 7px 10px;
        font-size: 12px;
    }

    .edb-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .edb-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .edb-school-name {
        font-size: 14px;
    }

    .edb-receipt-title {
        font-size: 14px;
    }

    .edb-fees-table th, .edb-fees-table td {
        font-size: 11px;
        padding: 6px 8px;
    }
}

/* ── Print ── */
@media print {
    body {
        background: #fff;
    }

    .edb-receipt-page {
        padding: 0;
    }

    .edb-topbar {
        display: none !important;
    }

    .edb-receipt-card {
        border: none;
        border-radius: 0 !important;
        box-shadow: none;
        backdrop-filter: none;
        max-width: 100%;
    }

    .edb-receipt-header {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .edb-section-header {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .edb-fees-table tr.edb-total td {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    div.edb-receipt-card {
        page-break-after: always;
        page-break-inside: avoid;
    }
}

.edb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    text-decoration: none;
    white-space: nowrap;
}

    .edb-btn:hover {
        opacity: .88;
        text-decoration: none;
    }

    .edb-btn:active {
        transform: scale(0.97);
    }

.edb-btn-back {
    background: #e0e7ff;
    color: #3730a3 !important;
}

 .lpsgs-content-area{
        padding:0px !important;
    }
    .content{
        padding:0px !important;
    }
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .sel-page {
        min-height: 100vh;
        padding: 2rem 1rem 4rem;
        font-family: 'DM Sans', sans-serif;
        background: #f0f4ff;
        background-image: radial-gradient(ellipse at 15% 15%, rgba(99,102,241,0.15) 0%, transparent 55%), radial-gradient(ellipse at 85% 85%, rgba(56,189,248,0.15) 0%, transparent 55%), radial-gradient(ellipse at 60% 5%, rgba(168,85,247,0.08) 0%, transparent 45%);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ── Logo ── */
    .sel-logo {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
    }

        .sel-logo img {
            height: 52px;
            object-fit: contain;
        }

    /* ── Page header ── */
    .sel-header {
        text-align: center;
        margin-bottom: 2rem;
        max-width: 560px;
    }

    .sel-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: linear-gradient(90deg,#6366f1,#38bdf8);
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 14px;
        border-radius: 20px !important;
        letter-spacing: 0.05em;
        margin-bottom: 10px;
    }

    .sel-title {
        font-family: 'Sora', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #1e1b4b;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .sel-desc {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.6;
    }

    /* ── Error banner ── */
    .sel-error {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        background: #fef2f2;
        border: 1px solid #fca5a5;
        border-radius: 12px !important;
        padding: 12px 16px;
        font-size: 13px;
        color: #b91c1c;
        width: 100%;
        max-width: 860px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

        .sel-error i {
            flex-shrink: 0;
            font-size: 16px;
            margin-top: 1px;
        }

    /* ── Stepper wrapper ── */
    .sel-stepper {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
        justify-content: center;
    }

    /* ── Step card ── */
    .sel-step {
        flex: 1;
        min-width: 220px;
        max-width: 220px;
    }

    .sel-card {
        background: rgba(255,255,255,0.80);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255,255,255,0.75);
        border-radius: 18px !important;
        padding: 18px 16px 16px;
        box-shadow: 0 4px 20px rgba(80,80,200,0.09);
        transition: transform 0.2s, box-shadow 0.2s;
        height: 100%;
    }

        .sel-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(80,80,200,0.14);
        }

    /* Card header row */
    .sel-card-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
    }

    .sel-num {
        width: 30px;
        height: 30px;
        border-radius: 9px !important;
        flex-shrink: 0;
        background: linear-gradient(135deg,#6366f1,#818cf8);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sel-card-meta {
        flex: 1;
    }

    .sel-card-label {
        display: block;
        font-size: 10px;
        font-weight: 600;
        color: #9ca3af;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .sel-card-title {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #1e1b4b;
    }

    .sel-card-icon {
        font-size: 20px;
        color: #c7d2fe;
    }

    /* Override MCampus select look */
    .sel-card select,
    .sel-card .form-control,
    .sel-card .MCampusSelectBox,
    .select2-selection.select2-selection--single {
        width: 100% !important;
        padding: 9px 12px !important;
        font-size: 13px !important;
        font-family: 'DM Sans', sans-serif !important;
        border: 1.5px solid #e0e7ff !important;
        border-radius: 9px !important;
        background: rgba(248,250,255,0.95) !important;
        color: #1e1b4b !important;
        outline: none !important;
        transition: border-color 0.2s, box-shadow 0.2s !important;
        appearance: auto !important;
        -webkit-appearance: auto !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered{
        line-height:16px !important;

    }
        .sel-card select:focus,
        .sel-card .form-control:focus {
            border-color: #6366f1 !important;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
            background: #fff !important;
        }

    /* ── Arrow connector ── */
    .sel-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 6px;
        padding-top: 54px; /* vertically centre relative to card header */
        color: #a5b4fc;
        font-size: 18px;
        flex-shrink: 0;
        align-self: flex-start;
    }

    /* ── Validation error ── */
    /*.sel-card .editor-error,
    .sel-card .field-validation-error,
    .sel-card span.field-validation-error {
        display: block;
        font-size: 11px;
        font-weight: 500;
        color: #dc2626 !important;
        margin-top: 6px;
        padding: 3px 8px;
        background: #fef2f2;
        border-radius: 5px !important;
        border-left: 3px solid #f87171 !important;
        box-shadow: none !important;
        line-height: 1.4;
    }*/

    .sel-card .field-validation-valid,
    .sel-card span.field-validation-valid {
        display: none !important;
    }

    .sel-card .editor-error:empty {
        display: none;
    }

    /*.sel-card .ui-state-error {
        background: #fef2f2 !important;
        border: none !important;
        border-left: 3px solid #f87171 !important;
        border-radius: 5px !important;
        padding: 3px 8px !important;
        color: #dc2626 !important;
        font-size: 11px !important;
        box-shadow: none !important;
        margin-top: 6px;
    }*/

    .sel-card .ui-corner-all {
        border-radius: 5px !important;
    }

    /* ── Progress track (visual only, below stepper) ── */
    .sel-progress-track {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        max-width: 1010px;
        margin-top: 20px;
        margin-bottom: 0;
        margin-left:98px;
        padding: 0 12px;
    }

    .sel-track-dot {
        width: 10px;
        height: 10px;
        border-radius: 50% !important;
        background: #c7d2fe;
        flex-shrink: 0;
        transition: background 0.3s;
    }

        .sel-track-dot.active {
            background: #6366f1;
        }

    .sel-track-line {
        flex: 1;
        height: 2px;
        background: #e0e7ff;
        transition: background 0.3s;
    }

        .sel-track-line.active {
            background: #6366f1;
        }

    /* ── Responsive ── */
    @media (max-width: 700px) {
        .sel-stepper {
            flex-direction: column;
            align-items: stretch;
        }

        .sel-step {
            max-width: 100%;
            min-width: 0;
        }

        .sel-arrow {
            padding-top: 0;
            transform: rotate(90deg);
            align-self: center;
        }

        .sel-title {
            font-size: 20px;
        }
    }

    @media (min-width: 701px) and (max-width: 960px) {
        .sel-step {
            min-width: 130px;
        }
    }

    /* ── Find My Location ── */
    .sel-location-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .sel-location-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        color: #fff;
        border: none;
        border-radius: 10px !important;
        padding: 9px 20px;
        font-size: 13px;
        font-weight: 600;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer;
        transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    }

        .sel-location-btn:hover:not(:disabled) {
            opacity: 0.9;
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(99,102,241,0.38);
        }

        .sel-location-btn:disabled {
            opacity: 0.65;
            cursor: not-allowed;
        }

    .sel-location-msg {
        display: none;
        font-size: 12px;
        font-weight: 500;
        padding: 5px 12px;
        border-radius: 6px !important;
        line-height: 1.4;
    }

        .sel-location-msg.info    { background: #eff6ff; color: #1d4ed8; }
        .sel-location-msg.success { background: #f0fdf4; color: #166534; }
        .sel-location-msg.error   { background: #fef2f2; color: #b91c1c; }

         *, *::before, *::after {
        box-sizing: border-box;
    }

    /* ── Scroll container ── */
    .edb-disability-wrap {
        max-height: 420px;
        overflow-y: auto;
        padding-right: 6px;
        font-family: 'DM Sans', sans-serif;
    }

        /* Custom scrollbar */
        .edb-disability-wrap::-webkit-scrollbar {
            width: 5px;
        }

        .edb-disability-wrap::-webkit-scrollbar-track {
            background: rgba(99,102,241,0.06);
            border-radius: 10px !important;
        }

        .edb-disability-wrap::-webkit-scrollbar-thumb {
            background: rgba(99,102,241,0.3);
            border-radius: 10px !important;
        }

    /* ── Group block ── */
    .edb-disability-group {
        margin-bottom: 18px;
    }

    /* ── Group header ── */
    .edb-disability-group-header {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Sora', sans-serif;
        font-size: 11px;
        font-weight: 700;
        color: #3730a3;
        text-transform: uppercase;
        letter-spacing: .06em;
        padding: 7px 12px;
        margin-bottom: 10px;
        background: linear-gradient(90deg, rgba(99,102,241,0.08), rgba(56,189,248,0.04));
        border-left: 4px solid #6366f1;
        border-radius: 0 8px 8px 0 !important;
    }

        .edb-disability-group-header i {
            color: #6366f1;
            font-size: 12px;
        }

    /* ── 2-col checkbox grid ── */
    .edb-disability-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* ── Checkbox item card ── */
    .edb-disability-item {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 8px 12px;
        background: rgba(255,255,255,0.82);
        border: 1px solid rgba(99,102,241,0.15);
        border-radius: 10px !important;
        cursor: pointer;
        transition: border-color .15s, background .15s, box-shadow .15s;
    }

        .edb-disability-item:hover {
            border-color: rgba(99,102,241,0.4);
            background: rgba(99,102,241,0.04);
            box-shadow: 0 2px 8px rgba(99,102,241,0.1);
        }

        /* Highlight when checked */
        .edb-disability-item:has(input:checked) {
            border-color: #6366f1;
            background: rgba(99,102,241,0.07);
            box-shadow: 0 2px 10px rgba(99,102,241,0.14);
        }

        .edb-disability-item input[type=checkbox] {
            accent-color: #6366f1;
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            cursor: pointer;
        }

        .edb-disability-item label {
            margin: 0;
            font-size: 13px;
            font-weight: 500;
            color: #1e1b4b;
            cursor: pointer;
            line-height: 1.3;
        }

    /* ── Empty state ── */
    .edb-disability-empty {
        font-size: 13px;
        color: #6b7280;
        padding: 16px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .edb-disability-empty i {
            color: #a5b4fc;
            font-size: 16px;
        }

    /* ── Responsive ── */
    @media (max-width: 480px) {
        .edb-disability-grid {
            grid-template-columns: 1fr;
        }

        .edb-disability-item {
            padding: 7px 10px;
        }

            .edb-disability-item label {
                font-size: 12px;
            }
    }

    /* ── Achievement card ── */
    .edb-achiev-card {
        background: rgba(255,255,255,0.82);
        border: 1px solid rgba(99,102,241,0.12);
        border-radius: 14px !important;
        padding: 16px 20px 12px;
        margin-bottom: 16px;
    }

    /* ── Section header ── */
    .edb-section-head {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        background: rgba(99,102,241,0.06);
        border-left: 3px solid #6366f1;
        border-radius: 0 10px 10px 0 !important;
        margin-bottom: 14px;
    }

    .edb-section-num {
        width: 26px;
        height: 26px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        color: #fff;
        font-family: 'Sora', sans-serif;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .edb-section-label {
        font-family: 'Sora', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #1e1b4b;
    }

    /* ── Form controls ── */
    .edb-achiev-wrap .form-control:not([type="file"]) {
        border-radius: 8px !important;
        border: 1px solid rgba(99,102,241,0.2) !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: 13px !important;
        color: #1e1b4b !important;
        background: rgba(255,255,255,0.9) !important;
        height: 38px !important;
        transition: border-color 0.15s, box-shadow 0.15s !important;
    }

        .edb-achiev-wrap .form-control:focus {
            border-color: #6366f1 !important;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
            outline: none !important;
        }

    .edb-achiev-wrap label {
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 500;
        color: #6b7280;
        margin-bottom: 4px;
        display: block;
    }

    /*.edb-achiev-wrap .editor-error {
        font-size: 11px !important;
        color: #b91c1c !important;
        background: #fff1f1 !important;
        border: none !important;
        border-left: 3px solid #f87171 !important;
        border-radius: 0 5px 5px 0 !important;
        padding: 3px 8px !important;
        margin-top: 3px !important;
    }*/

    /* ── Add / Remove buttons ── */
    .edb-btn-add {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 16px;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #15803d !important;
        background: #dcfce7;
        border: none;
        border-radius: 8px !important;
        cursor: pointer;
        transition: filter 0.15s, transform 0.12s;
        vertical-align: middle;
    }

        .edb-btn-add:hover {
            filter: brightness(0.93);
        }

        .edb-btn-add:active {
            transform: scale(0.97);
        }

    .edb-btn-remove {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 16px;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #b91c1c !important;
        background: #fee2e2;
        border: none;
        border-radius: 8px !important;
        cursor: pointer;
        transition: filter 0.15s, transform 0.12s;
        vertical-align: middle;
        float: right;
    }

        .edb-btn-remove:hover {
            filter: brightness(0.93);
        }

        .edb-btn-remove:active {
            transform: scale(0.97);
        }

    .edb-achiev-actions {
        overflow: hidden;
        padding-top: 4px;
    }

    .field-validation-error { color: red !important; }

    /* ── Page title ── */
    .edb-addl-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }
    .edb-addl-title-icon {
        width: 32px; height: 32px;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex; align-items: center; justify-content: center;
        color: #fff; font-size: 14px; flex-shrink: 0;
    }
    .edb-addl-title-text {
        font-family: 'Sora', sans-serif;
        font-size: 15px; font-weight: 700;
    }

    /* ── Override label-warning badge to match design system ── */
    #@(oAjaxDivID) .label.label-warning,
    .edb-addl-wrap .label.label-warning {
        background: linear-gradient(135deg, #6366f1, #38bdf8) !important;
        color: #fff !important;
        border-radius: 50% !important;
        width: 24px; height: 24px;
        display: inline-flex !important;
        align-items: center; justify-content: center;
        font-size: 11px; font-weight: 700;
        font-family: 'Sora', sans-serif;
        padding: 0 !important;
        vertical-align: middle;
    }

    /* ── Group header (mcet) ── */
    .edb-addl-wrap h3 {
        font-family: 'Sora', sans-serif;
        font-size: 14px; font-weight: 700;
        color: #1e1b4b;
        margin: 8px 0 4px;
    }

    /* ── Group divider ── */
    .edb-addl-wrap hr {
        border: none;
        border-top: 1px solid rgba(99,102,241,0.15);
        margin: 8px 0 14px;
    }

    /* ── Remark notes ── */
    .edb-addl-remark {
        display: flex;
        align-items: flex-start;
        gap: 7px;
        padding: 8px 12px;
        background: #fff1f1;
        border-left: 3px solid #f87171;
        border-radius: 0 7px 7px 0 !important;
        font-size: 13px; color: #b91c1c;
        font-family: 'DM Sans', sans-serif;
        margin-bottom: 8px;
    }

    /* ── sms note ── */
    .edb-addl-sms-note {
        display: flex;
        align-items: flex-start;
        gap: 7px;
        padding: 8px 12px;
        background: #fff1f1;
        border-left: 3px solid #f87171;
        border-radius: 0 7px 7px 0 !important;
        font-size: 12px; color: #b91c1c;
        font-family: 'DM Sans', sans-serif;
        margin-bottom: 12px;
    }

    /* ── Question rows ── */
    .edb-addl-wrap .row {
        margin-bottom: 4px;
    }

    /* ── Label cell (question label) ── */
    .edb-addl-wrap .form-control[style*="height: auto"],
    .edb-addl-wrap label.form-control {
        border-radius: 8px !important;
        border: 1px solid rgba(99,102,241,0.15) !important;
        background: rgba(99,102,241,0.04) !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: 13px !important;
        color: #1e1b4b !important;
        min-height: 38px !important;
        height: auto !important;
        padding: 8px 12px !important;
    }

    /* ── Answer controls ── */
    .edb-addl-wrap input.form-control,
    .edb-addl-wrap select.form-control,
    .edb-addl-wrap textarea.form-control {
        border-radius: 8px !important;
        border: 1px solid rgba(99,102,241,0.2) !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: 13px !important;
        color: #1e1b4b !important;
        background: rgba(255,255,255,0.9) !important;
    }
    .edb-addl-wrap input.form-control { height: 38px !important; }
    .edb-addl-wrap input.form-control:focus,
    .edb-addl-wrap select.form-control:focus,
    .edb-addl-wrap textarea.form-control:focus {
        border-color: #6366f1 !important;
        box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
        outline: none !important;
    }

    /* ── Checkbox wells ── */
    .edb-addl-wrap .well {
        background: rgba(255,255,255,0.88) !important;
        border: 1px solid rgba(99,102,241,0.15) !important;
        border-radius: 8px !important;
        padding: 8px 12px !important;
        box-shadow: none !important;
        font-size: 13px;
        color: #1e1b4b !important;
    }
    .edb-addl-wrap .well label { color: #1e1b4b !important; font-weight: 400; }
    .edb-addl-wrap .well input[type="checkbox"] { accent-color: #6366f1; }

    /* ── Validation errors ── */
    .edb-addl-wrap .editor-error,
    .edb-addl-wrap .field-validation-error {
        font-size: 11px !important;
        color: #b91c1c !important;
    }
    .edb-addl-wrap .editor-error {
        background: #fff1f1 !important;
        border: none !important;
        border-left: 3px solid #f87171 !important;
        border-radius: 0 5px 5px 0 !important;
        padding: 3px 8px !important;
        margin-top: 3px !important;
    }

    /* ── Empty state ── */
    .edb-addl-empty {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 20px;
        background: rgba(255,255,255,0.75);
        border: 2px dashed rgba(99,102,241,0.2);
        border-radius: 12px !important;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px; color: #6b7280;
    }

    /* ── select2 override ── */
    .select2-selection--multiple { color: black; }

    /* ── gea subject-group note ── */
    .edb-addl-gea-note {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px; color: #78350f;
        background: #fef9c3;
        border-left: 3px solid #f59e0b;
        border-radius: 0 7px 7px 0 !important;
        padding: 7px 12px;
        margin-bottom: 8px;
    }

     *, *::before, *::after {
        box-sizing: border-box;
    }
        .lpsgs-content-area{
        padding:0px !important;
    }
    .content{
        padding:0px !important;
    }
    /* ── Page wrapper ── */
    .enq-page {
        /*min-height: 100vh;*/
        padding: 2rem 1rem 4rem;
        font-family: 'DM Sans', sans-serif;
        background: #f0f4ff;
        background-image: radial-gradient(ellipse at 15% 15%, rgba(99,102,241,0.15) 0%, transparent 55%), radial-gradient(ellipse at 85% 85%, rgba(56,189,248,0.15) 0%, transparent 55%);
        /*display: flex;*/
        flex-direction: column;
        align-items: center;
    }

    /* ── Page header ── */
    .enq-page-header {
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
    }

    .enq-page-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: linear-gradient(90deg,#6366f1,#38bdf8);
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 14px;
        border-radius: 20px !important;
        letter-spacing: 0.05em;
        margin-bottom: 10px;
    }

    .enq-page-title {
        font-family: 'Sora',sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #1e1b4b;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .enq-page-desc {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.6;
    }

    /* ── Form wrap ── */
    .enq-form-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
   @media (max-width: 768px) {
    .enq-form-wrap {
        grid-template-columns: 1fr;
    }

    .enq-section:nth-child(3) {
        grid-column: auto;
    }
}
    .enq-section:nth-child(3) {
    grid-column: 1 / -1;
}
    /* ── Section card ── */
    .enq-section {
        background: rgba(255,255,255,0.80);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255,255,255,0.75);
        border-radius: 20px !important;
        padding: 24px 24px 20px;
        box-shadow: 0 4px 20px rgba(80,80,200,0.09);
    }

    .enq-section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 1.5px solid #e0e7ff;
    }

    .enq-section-num {
        width: 32px;
        height: 32px;
        border-radius: 10px !important;
        flex-shrink: 0;
        background: linear-gradient(135deg,#6366f1,#818cf8);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .enq-section-title {
        font-family: 'Sora',sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #1e1b4b;
    }

    .enq-section-icon {
        margin-left: auto;
        font-size: 22px;
        color: #c7d2fe;
    }

    /* ── Field grid ── */
    .enq-grid {
        display: grid;
        gap: 16px;
    }

    .enq-grid-3 {
        grid-template-columns: repeat(3,1fr);
    }

    .enq-grid-2 {
        grid-template-columns: repeat(2,1fr);
    }

    .enq-grid-1 {
        grid-template-columns: 1fr;
    }

    /* ── Individual field ── */
    .enq-field {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .enq-label {
        font-size: 12px;
        font-weight: 500;
        color: #6b7280;
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 0;
    }

        .enq-label .req {
            color: #ef4444;
            font-size: 13px;
            line-height: 1;
        }

        .enq-label .opt {
            color: #9ca3af;
            font-weight: 400;
            font-size: 11px;
        }

    /* ── Override MCampus/Bootstrap inputs ── */
    .enq-field input.form-control,
    .enq-field select.form-control,
    .enq-field textarea.form-control,
    .enq-field .form-control {
        width: 100% !important;
        padding: 10px 12px !important;
        font-size: 14px !important;
        font-family: 'DM Sans',sans-serif !important;
        border: 1.5px solid #e0e7ff !important;
        border-radius: 10px !important;
        background: rgba(248,250,255,0.95) !important;
        color: #1e1b4b !important;
        outline: none !important;
        transition: border-color 0.2s, box-shadow 0.2s !important;
        box-shadow: none !important;
        appearance: auto !important;
        -webkit-appearance: auto !important;
        height: auto !important;
    }

        .enq-field input.form-control:focus,
        .enq-field select.form-control:focus,
        .enq-field textarea.form-control:focus {
            border-color: #6366f1 !important;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
            background: #fff !important;
        }

    .enq-field textarea.form-control {
        resize: vertical;
        min-height: 80px;
    }

    /* ── Validation error styling (MCampus writes into these) ── */
    
    /*.enq-field .field-validation-error,
    .enq-field span.field-validation-error {
        display: block;
        font-size: 11px;
        font-weight: 500;
        color: #dc2626 !important;
        margin-top: 3px;
        padding: 3px 8px;
        background: #fef2f2;
        border-radius: 5px !important;
        border-left: 3px solid #f87171 !important;
        box-shadow: none !important;
        line-height: 1.4;
    }

    .enq-field .field-validation-valid,
    .enq-field span.field-validation-valid {
        display: none !important;
    }

    .enq-field .editor-error:empty {
        display: none;
    }*/

    /*.enq-field .ui-state-error {
        background: #fef2f2 !important;
        border: none !important;
        border-left: 3px solid #f87171 !important;
        border-radius: 5px !important;
        padding: 3px 8px !important;
        color: #dc2626 !important;
        font-size: 11px !important;
        box-shadow: none !important;
        margin-top: 3px;
    }*/

    .enq-field .ui-corner-all {
        border-radius: 5px !important;
    }

    /* MCampus marks invalid inputs with this class — just style the border, no extra JS */
    .enq-field input.input-validation-error,
    .enq-field select.input-validation-error,
    .enq-field .form-control.input-validation-error {
        border-color: #f87171 !important;
        background: #fff5f5 !important;
        box-shadow: 0 0 0 3px rgba(248,113,113,0.12) !important;
    }

    /* ── Note box ── */
    .enq-note {
        background: #fffbeb;
        border: 1px solid #fde68a;
        border-radius: 10px !important;
        padding: 12px 16px;
        font-size: 12px;
        color: #78350f;
        line-height: 1.7;
    }

        .enq-note strong {
            color: #92400e;
        }

    /* ── Action row ── */
    .enq-action-row {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        flex-wrap: wrap;
    }

    .enq-btn-submit {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 28px;
        font-family: 'DM Sans',sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(90deg,#6366f1,#38bdf8);
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
        transition: opacity 0.2s, transform 0.15s;
    }

        .enq-btn-submit:hover {
            opacity: 0.9;
        }

        .enq-btn-submit:active {
            transform: scale(0.97);
        }

    /* ── Confirmation modal ── */
    #jsConfirmationModal .modal-content {
        border-radius: 16px !important;
        border: none !important;
        box-shadow: 0 20px 60px rgba(80,80,200,0.18) !important;
        font-family: 'DM Sans',sans-serif !important;
        overflow: hidden;
    }

    #jsConfirmationModal .modal-header {
        background: linear-gradient(90deg,#6366f1,#38bdf8) !important;
        padding: 14px 20px !important;
    }

    #jsConfirmationModal .modal-title {
        color: #fff !important;
        font-family: 'Sora',sans-serif !important;
        font-size: 16px !important;
        font-weight: 600 !important;
    }

    #jsConfirmationModal .modal-body {
        padding: 20px 24px !important;
        font-size: 14px;
        color: #374151;
    }

    #jsConfirmationModal .modal-footer {
        padding: 12px 20px !important;
    }

    .enq-btn-ok {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 22px;
        font-family: 'DM Sans',sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(90deg,#6366f1,#38bdf8);
        border: none;
        border-radius: 9px !important;
        box-shadow: 0 3px 10px rgba(99,102,241,0.25);
        text-decoration: none;
        cursor: pointer;
        transition: opacity 0.2s;
    }

        .enq-btn-ok:hover {
            opacity: 0.9;
            color: #fff;
            text-decoration: none;
        }

    /* ── Responsive ── */
    @media (max-width: 640px) {
        .enq-grid-3, .enq-grid-2 {
            grid-template-columns: 1fr;
        }

        .enq-section {
            padding: 18px 16px;
        }

        .enq-page-title {
            font-size: 20px;
        }
    }

    @media (min-width: 641px) and (max-width: 860px) {
        .enq-grid-3 {
            grid-template-columns: repeat(2,1fr);
        }
    }

     /* ── Page title ── */
    .edb-doc-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 6px;
    }

    .edb-doc-title-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
        flex-shrink: 0;
    }

    .edb-doc-title-text {
        font-family: 'Sora', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #1e1b4b;
    }

    /* ── Note cards ── */
    .edb-note {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 0 8px 8px 0 !important;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .edb-note-danger {
        background: #fff1f1;
        border-left: 3px solid #f87171;
        color: #b91c1c;
    }

    .edb-note-info {
        background: #dbeafe;
        border-left: 3px solid #3b82f6;
        color: #1d4ed8;
    }

    .edb-note a {
        color: inherit;
        font-weight: 600;
    }

    /* ── Download buttons ── */
    .edb-btn-download {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 20px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #fff !important;
        background: linear-gradient(90deg, #6366f1, #38bdf8);
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        text-decoration: none !important;
        box-shadow: 0 3px 10px rgba(99,102,241,0.25);
        transition: opacity 0.15s, transform 0.12s;
        margin-bottom: 10px;
    }

        .edb-btn-download:hover {
            opacity: 0.9;
        }

        .edb-btn-download:active {
            transform: scale(0.97);
        }

    /* ── Document upload card ── */
    .edb-doc-card {
        background: rgba(255,255,255,0.82);
        border: 1px solid rgba(99,102,241,0.12);
        border-radius: 14px !important;
        overflow: hidden;
        margin-bottom: 16px;
    }

    .edb-doc-card-head {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        background: #dbeafe;
        border-bottom: 1px solid rgba(99,102,241,0.10);
    }

    .edb-doc-num {
        width: 24px;
        height: 24px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        color: #fff;
        font-family: 'Sora', sans-serif;
        font-size: 11px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .edb-doc-name {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #1d4ed8;
        flex: 1;
        line-height: 1.3;
    }

    .edb-doc-required {
        font-size: 18px;
        color: #b91c1c;
        font-weight: 700;
        flex-shrink: 0;
    }

    .edb-doc-card-body {
        padding: 14px 16px;
    }

        .edb-doc-card-body .editor-error {
            font-size: 11px !important;
            color: #b91c1c !important;
            background: #fff1f1 !important;
            border: none !important;
            border-left: 3px solid #f87171 !important;
            border-radius: 0 5px 5px 0 !important;
            padding: 3px 8px !important;
            margin-top: 3px !important;
        }

    /* ── Empty state ── */
    .edb-doc-empty {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 20px;
        background: rgba(255,255,255,0.75);
        border: 2px dashed rgba(99,102,241,0.2);
        border-radius: 12px !important;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        color: #6b7280;
    }

       .lpsgs-content-area{
        padding:0px !important;
    }
    /* ── Outer wrap ── */
    .edb-enquiry-wrap {
        font-family: 'DM Sans', sans-serif;
        padding: 0 0 2rem;
    }

    /* ── Student name header ── */
    .edb-student-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: rgba(255,255,255,0.78);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 16px !important;
        padding: 14px 24px;
        box-shadow: 0 4px 20px rgba(80,80,200,0.08);
        text-align: center;
    }

    .edb-student-header-icon {
        width: 42px;
        height: 42px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        flex-shrink: 0;
    }

    .edb-student-header-name {
        font-family: 'Sora', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #1e1b4b;
    }

    .edb-student-header-class {
        font-size: 12px;
        color: #6b7280;
        margin-top: 2px;
    }

    /* ── Message bar ── */
    #showMessage {
        background: #dcfce7;
        color: #15803d;
        border-left: 4px solid #22c55e;
        border-radius: 10px !important;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    /* ── Tab nav — override Bootstrap nav-tabs fully ── */
    #DetailsTabs.nav-tabs {
        border-bottom: none !important;
        background: rgba(255,255,255,0.72) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(99,102,241,0.12) !important;
        border-radius: 14px !important;
        padding: 8px 10px !important;
        display: flex !important;
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 0 !important;
        box-shadow: 0 4px 16px rgba(80,80,200,0.07);
    }

        #DetailsTabs.nav-tabs > li {
            float: none !important;
            margin: 0 !important;
            cursor:crosshair;pointer-events:none;
        }

            #DetailsTabs.nav-tabs > li > a {
                font-family: 'DM Sans', sans-serif !important;
                font-size: 12px !important;
                font-weight: 500 !important;
                color: #6b7280 !important;
                background: transparent !important;
                border: none !important;
                border-radius: 9px !important;
                padding: 7px 14px !important;
                margin: 0 !important;
                display: flex !important;
                align-items: center !important;
                gap: 6px !important;
                white-space: nowrap;
                transition: background 0.15s, color 0.15s !important;
                cursor: pointer !important;
            }

                #DetailsTabs.nav-tabs > li > a:hover,
                #DetailsTabs.nav-tabs > li:hover > a {
                    background: rgba(99,102,241,0.08) !important;
                    color: #4338ca !important;
                }

            #DetailsTabs.nav-tabs > li.active > a,
            #DetailsTabs.nav-tabs > li.active > a:focus,
            #DetailsTabs.nav-tabs > li.active > a:hover {
                background: linear-gradient(90deg, #6366f1, #38bdf8) !important;
                color: #fff !important;
                border: none !important;
                border-radius: 9px !important;
                box-shadow: 0 3px 10px rgba(99,102,241,0.28) !important;
            }

    /* ── Tab content card ── */
    .tab-content {
        background: rgba(255,255,255,0.82);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.75);
        border-radius: 14px !important;
        box-shadow: 0 4px 24px rgba(80,80,200,0.09);
        margin-top: 10px !important;
    }

        .tab-content .tab-pane {
            padding: 0;
        }

        .tab-content .box-body {
            padding: 24px 28px 20px !important;
        }

    /* ── Next button ── */
    .edb-btn-next {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 24px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #fff !important;
        background: linear-gradient(90deg, #6366f1, #38bdf8);
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        float: right;
        margin-top: 16px;
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
        transition: opacity 0.2s, transform 0.15s;
        animation: edb-pulse 2s ease-in-out infinite;
    }

        .edb-btn-next:hover {
            opacity: 0.9;
        }

        .edb-btn-next:active {
            transform: scale(0.97);
        }

    /* ── Previous button ── */
    .edb-btn-prev {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 24px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #6366f1 !important;
        background: transparent;
        border: 2px solid #6366f1;
        border-radius: 10px !important;
        cursor: pointer;
        float: left;
        margin-top: 16px;
        transition: all 0.18s;
    }

        .edb-btn-prev:hover {
            background: rgba(99,102,241,0.08);
            color: #4338ca !important;
            border-color: #4338ca;
        }

        .edb-btn-prev:active {
            transform: scale(0.97);
        }

    @keyframes edb-pulse {
        0%,100% {
            box-shadow: 0 4px 14px rgba(99,102,241,0.28);
        }

        50% {
            box-shadow: 0 4px 22px rgba(99,102,241,0.50);
        }
    }

    /* clearfix after float:right button */
    .edb-tab-footer {
        overflow: hidden;
        padding-bottom: 4px;
    }

    @media (max-width: 600px) {
        #DetailsTabs.nav-tabs {
            padding: 6px 8px !important;
        }

            #DetailsTabs.nav-tabs > li > a {
                font-size: 11px !important;
                padding: 6px 10px !important;
            }

        .tab-content .box-body {
            padding: 16px !important;
        }
    }

     /* ── Page title ── */
    .edb-parent-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
    }

    .edb-parent-title-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .edb-parent-title-text {
        font-family: 'Sora', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #1e1b4b;
        line-height: 1.3;
    }

    .edb-parent-title-sub {
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 400;
        color: #6b7280;
        margin-top: 3px;
        line-height: 1.5;
    }

    /* ── Relation tab icons map ── */
    .edb-rel-icon-DAD {
        content: '\f183';
    }
    /* fa-male    */
    .edb-rel-icon-MOM {
        content: '\f182';
    }
    /* fa-female  */
    .edb-rel-icon-GUARDIAN {
        content: '\f007';
    }
    /* fa-user   */

    /* ── Tab nav ── */
    #ParentDetailsTabs.nav-tabs,
    .edb-parent-wrap .nav-tabs {
        border-bottom: none !important;
        background: rgba(255,255,255,0.72) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(99,102,241,0.12) !important;
        border-radius: 14px !important;
        padding: 8px 10px !important;
        display: flex !important;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 0 !important;
        box-shadow: 0 4px 16px rgba(80,80,200,0.07);
    }

        .edb-parent-wrap .nav-tabs > li {
            float: none !important;
            margin: 0 !important;
            cursor:crosshair;pointer-events:none;
        }

            .edb-parent-wrap .nav-tabs > li > a {
                font-family: 'DM Sans', sans-serif !important;
                font-size: 13px !important;
                font-weight: 500 !important;
                color: #6b7280 !important;
                background: transparent !important;
                border: none !important;
                border-radius: 9px !important;
                padding: 8px 18px !important;
                margin: 0 !important;
                display: flex !important;
                align-items: center !important;
                gap: 7px !important;
                transition: background 0.15s, color 0.15s !important;
                cursor: pointer !important;
                white-space: nowrap;
            }

                .edb-parent-wrap .nav-tabs > li > a:hover {
                    background: rgba(99,102,241,0.08) !important;
                    color: #4338ca !important;
                }

            .edb-parent-wrap .nav-tabs > li.active > a,
            .edb-parent-wrap .nav-tabs > li.active > a:focus,
            .edb-parent-wrap .nav-tabs > li.active > a:hover {
                background: linear-gradient(90deg, #6366f1, #38bdf8) !important;
                color: #fff !important;
                border: none !important;
                border-radius: 9px !important;
                box-shadow: 0 3px 10px rgba(99,102,241,0.28) !important;
            }

    /* ── Tab content card ── */
    .edb-parent-wrap .tab-content {
        background: rgba(255,255,255,0.82);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.75);
        border-radius: 0 0 20px 20px !important;
        box-shadow: 0 4px 24px rgba(80,80,200,0.09);
        padding: 24px 20px 20px;
    }

    @media (max-width: 600px) {
        .edb-parent-wrap .nav-tabs {
            padding: 6px 8px !important;
        }

            .edb-parent-wrap .nav-tabs > li > a {
                font-size: 12px !important;
                padding: 7px 12px !important;
            }

        .edb-parent-wrap .tab-content {
            padding: 16px;
        }
    }
     /* ── Page / section titles ── */
    .edb-acad-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }

    .edb-acad-title-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
        flex-shrink: 0;
    }

    .edb-acad-title-text {
        font-family: 'Sora', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #1e1b4b;
    }

    /* ── Class section header ── */
    .edb-section-head {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 16px;
        background: rgba(99,102,241,0.06);
        border-left: 3px solid #6366f1;
        border-radius: 0 10px 10px 0 !important;
        margin-bottom: 14px;
    }

    .edb-section-num {
        width: 26px;
        height: 26px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        color: #fff;
        font-family: 'Sora', sans-serif;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .edb-section-label {
        font-family: 'Sora', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #1e1b4b;
    }

    .edb-section-required {
        font-size: 11px;
        font-weight: 600;
        color: #b91c1c;
        background: #fee2e2;
        padding: 2px 8px;
        border-radius: 6px !important;
        margin-left: 4px;
    }

    /* ── Blocks ── */
    .edb-acad-block {
        background: rgba(255,255,255,0.82);
        border: 1px solid rgba(99,102,241,0.10);
        border-radius: 14px !important;
        padding: 16px 20px 12px;
        margin-bottom: 16px;
    }

    /* ── Form controls ── */
    .edb-acad-wrap .form-control:not([type="file"]){
        border-radius: 8px !important;
        border: 1px solid rgba(99,102,241,0.2) !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: 13px !important;
        color: #1e1b4b !important;
        background: rgba(255,255,255,0.9) !important;
        height: 38px !important;
        transition: border-color 0.15s, box-shadow 0.15s !important;
    }

        .edb-acad-wrap .form-control:focus {
            border-color: #6366f1 !important;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
            outline: none !important;
        }

 
    /* ── Subjects table ── */
    .edb-subject-table {
        width: 90%;
        border-collapse: collapse;
        font-size: 13px;
        font-family: 'DM Sans', sans-serif;
    }

        .edb-subject-table thead tr {
            background: linear-gradient(90deg, #6366f1, #38bdf8);
        }

        .edb-subject-table thead th {
            padding: 10px 14px;
            color: #fff;
            font-family: 'Sora', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-align: left;
            border: none;
        }

        .edb-subject-table tbody tr {
            border-bottom: 1px solid rgba(99,102,241,0.08);
        }

            .edb-subject-table tbody tr:hover {
                background: rgba(99,102,241,0.03);
            }

        .edb-subject-table tbody td {
            padding: 8px 14px;
            border: none;
            vertical-align: middle;
            color: #1e1b4b;
        }

            .edb-subject-table tbody td .form-control {
                height: 34px !important;
            }

    /* ── Not required note ── */
    .edb-not-required {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        background: #fef9c3;
        border-left: 3px solid #f59e0b;
        border-radius: 0 8px 8px 0 !important;
        font-size: 13px;
        color: #78350f;
        font-family: 'DM Sans', sans-serif;
    }
    /* ── Section title ── */
    .edb-sib-title {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .edb-sib-title-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .edb-sib-title-text {
        font-family: 'Sora', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #1e1b4b;
        line-height: 1.3;
    }

    .edb-sib-title-note {
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        color: #6b7280;
        margin-top: 2px;
    }

    /* ── Sibling card ── */
    .edb-sib-card {
        background: rgba(255,255,255,0.82);
        border: 1px solid rgba(99,102,241,0.12);
        border-radius: 14px !important;
        padding: 14px 18px 12px;
        margin-bottom: 16px;
    }

    /* ── Sibling section header ── */
    .edb-section-head {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        background: rgba(99,102,241,0.06);
        border-left: 3px solid #6366f1;
        border-radius: 0 10px 10px 0 !important;
        margin-bottom: 12px;
    }

    .edb-section-num {
        width: 26px;
        height: 26px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        color: #fff;
        font-family: 'Sora', sans-serif;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .edb-section-label {
        font-family: 'Sora', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #1e1b4b;
    }

    /* ── UID verify row ── */
    .edb-verify-row {
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 16px;
    }

        .edb-verify-row .form-control {
            max-width: 240px;
        }

    /* ── Buttons ── */
    .edb-btn-verify {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 20px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #fff !important;
        background: linear-gradient(90deg, #6366f1, #38bdf8);
        border: none;
        border-radius: 8px !important;
        cursor: pointer;
        box-shadow: 0 3px 10px rgba(99,102,241,0.25);
        transition: opacity 0.15s, transform 0.12s;
    }

        .edb-btn-verify:hover {
            opacity: 0.9;
        }

        .edb-btn-verify:active {
            transform: scale(0.97);
        }

    .edb-btn-delete {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #b91c1c !important;
        background: #fee2e2;
        border: none;
        border-radius: 7px !important;
        cursor: pointer;
        transition: filter 0.15s, transform 0.12s;
        white-space: nowrap;
    }

        .edb-btn-delete:hover {
            filter: brightness(0.93);
        }

        .edb-btn-delete:active {
            transform: scale(0.97);
        }

    /* ── Internal siblings table ── */
    .edb-sib-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13px;
        font-family: 'DM Sans', sans-serif;
    }

        .edb-sib-table thead tr {
            background: linear-gradient(90deg, #6366f1, #38bdf8);
        }

        .edb-sib-table thead th {
            padding: 10px 14px;
            color: #fff;
            font-family: 'Sora', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-align: left;
            border: none;
            white-space: nowrap;
        }

        .edb-sib-table tbody tr {
            border-bottom: 1px solid rgba(99,102,241,0.08);
        }

            .edb-sib-table tbody tr:hover {
                background: rgba(99,102,241,0.03);
            }

        .edb-sib-table tbody td {
            padding: 10px 14px;
            border: none;
            vertical-align: middle;
            color: #374151;
            font-size: 13px;
        }

    .edb-sib-sr {
        width: 26px;
        height: 26px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* ── Form controls ── */
    .edb-sib-wrap .form-control:not([type="file"]) {
        border-radius: 8px !important;
        border: 1px solid rgba(99,102,241,0.2) !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: 13px !important;
        color: #1e1b4b !important;
        background: rgba(255,255,255,0.9) !important;
        height: 38px !important;
        transition: border-color 0.15s, box-shadow 0.15s !important;
    }

        .edb-sib-wrap .form-control:focus {
            border-color: #6366f1 !important;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
            outline: none !important;
        }

   

    /* ── GRS info note ── */
    .edb-info-note {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 14px;
        background: #dbeafe;
        border-left: 3px solid #3b82f6;
        border-radius: 0 8px 8px 0 !important;
        font-size: 12px;
        color: #1d4ed8;
        font-family: 'DM Sans', sans-serif;
        margin-top: 8px;
    }

      /* ── Page title ── */
    .edb-form-title {
        font-family: 'Sora', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #1e1b4b;
        margin: 0 0 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .edb-form-title-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
        flex-shrink: 0;
    }

    /* ── Section header ── */
    .edb-section-head {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        background: rgba(99,102,241,0.06);
        border-left: 3px solid #6366f1;
        border-radius: 0 10px 10px 0 !important;
        margin: 0 0 16px;
    }

    .edb-section-num {
        width: 26px;
        height: 26px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        color: #fff;
        font-family: 'Sora', sans-serif;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .edb-section-label {
        font-family: 'Sora', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #1e1b4b;
    }

    /* ── Photo upload header ── */
    .edb-upload-head {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        background: #dbeafe;
        border-radius: 8px !important;
        margin-bottom: 10px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #1d4ed8;
    }

    /* ── Form controls ── */
    .edb-form-wrap .form-control:not([type="file"]) {
        border-radius: 8px !important;
        border: 1px solid rgba(99,102,241,0.2) !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: 13px !important;
        color: #1e1b4b !important;
        background: rgba(255,255,255,0.9) !important;
        transition: border-color 0.15s, box-shadow 0.15s !important;
        height: 38px !important;
    }

    .edb-form-wrap textarea.form-control {
        height: auto !important;
        min-height: 72px !important;
    }

    .edb-form-wrap .form-control:focus {
        border-color: #6366f1 !important;
        box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
        outline: none !important;
    }

    .edb-form-wrap select.form-control {
        height: 38px !important;
    }

    /* ── Validation error ── */
    /*.edb-form-wrap .editor-error {
        font-size: 11px !important;
        color: #b91c1c !important;
        background: #fff1f1 !important;
        border: none !important;
        border-left: 3px solid #f87171 !important;
        border-radius: 0 5px 5px 0 !important;
        padding: 3px 8px !important;
        margin-top: 3px !important;
    }*/

    /* ── DOB eligibility note ── */
    .edb-eligibility-note {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 14px;
        background: #fef9c3;
        border-left: 3px solid #f59e0b;
        border-radius: 0 8px 8px 0 !important;
        font-size: 12px;
        color: #78350f;
        margin-top: 16px;
    }
    /* ── Section header ── */
    .edb-section-head {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        background: rgba(99,102,241,0.06);
        border-left: 3px solid #6366f1;
        border-radius: 0 10px 10px 0 !important;
        margin: 0 0 14px;
    }

    .edb-section-num {
        width: 26px;
        height: 26px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        color: #fff;
        font-family: 'Sora', sans-serif;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .edb-section-label {
        font-family: 'Sora', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #1e1b4b;
    }

    /* ── Upload header ── */
    .edb-upload-head {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        background: #dbeafe;
        border-radius: 8px !important;
        margin-bottom: 10px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #1d4ed8;
    }

    /* ── Form controls ── */
    .edb-parent-edit .form-control:not([type="file"]) {
        border-radius: 8px !important;
        border: 1px solid rgba(99,102,241,0.2) !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: 13px !important;
        color: #1e1b4b !important;
        background: rgba(255,255,255,0.9) !important;
        transition: border-color 0.15s, box-shadow 0.15s !important;
        height: 38px !important;
    }

    .edb-parent-edit textarea.form-control {
        height: auto !important;
        min-height: 80px !important;
    }

    .edb-parent-edit select.form-control {
        height: 38px !important;
    }

    .edb-parent-edit .form-control:focus {
        border-color: #6366f1 !important;
        box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
        outline: none !important;
    }

    /* ── Validation errors ── */
    /*.edb-parent-edit .editor-error {
        font-size: 11px !important;
        color: #b91c1c !important;
        background: #fff1f1 !important;
        border: none !important;
        border-left: 3px solid #f87171 !important;
        border-radius: 0 5px 5px 0 !important;
        padding: 3px 8px !important;
        margin-top: 3px !important;
    }*/

    /* ── Checklist panels (Education / Profession / Designation) ── */
    .edb-checklist-panel {
        background: rgba(255,255,255,0.88);
        border: 1px solid rgba(99,102,241,0.12);
        border-radius: 12px !important;
        overflow: hidden;
    }

    .edb-checklist-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 10px 14px;
        background: rgba(99,102,241,0.06);
        border-bottom: 1px solid rgba(99,102,241,0.10);
    }

    .edb-checklist-head-title {
        font-family: 'Sora', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #4338ca;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .edb-checklist-body {
        height: 350px;
        overflow: auto;
        padding: 10px 14px;
        color: #1e1b4b !important;
    }

        .edb-checklist-body ul {
            list-style: none !important;
            padding: 0 !important;
            margin: 0;
        }

        .edb-checklist-body li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 0;
            white-space: nowrap !important;
            font-size: 13px;
        }

            .edb-checklist-body li input[type="checkbox"] {
                accent-color: #6366f1;
                width: 14px;
                height: 14px;
                flex-shrink: 0;
            }

            .edb-checklist-body li label {
                font-weight: 400 !important;
                margin: 0;
                cursor: pointer;
                color: #374151;
            }

    /* ── Action buttons ── */
    .edb-btn-action {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 20px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #fff !important;
        background: linear-gradient(90deg, #6366f1, #38bdf8);
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        text-decoration: none !important;
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
        transition: opacity 0.2s, transform 0.15s;
        animation: edb-pulse 2s ease-in-out infinite;
    }

        .edb-btn-action:hover {
            opacity: 0.9;
        }

        .edb-btn-action:active {
            transform: scale(0.97);
        }

    .edb-btn-prev-demo {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 20px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #3730a3 !important;
        background: #e0e7ff;
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        transition: filter 0.15s, transform 0.12s;
    }

        .edb-btn-prev-demo:hover {
            filter: brightness(0.93);
        }

        .edb-btn-prev-demo:active {
            transform: scale(0.97);
        }

    .edb-btn-step3 {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 20px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #15803d !important;
        background: #dcfce7;
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        transition: filter 0.15s, transform 0.12s;
    }

        .edb-btn-step3:hover {
            filter: brightness(0.93);
        }

        .edb-btn-step3:active {
            transform: scale(0.97);
        }

    @keyframes edb-pulse {
        0%,100% {
            box-shadow: 0 4px 14px rgba(99,102,241,0.28);
        }

        50% {
            box-shadow: 0 4px 22px rgba(99,102,241,0.50);
        }
    }

    .edb-btn-row {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 8px;
    }
    .row{
        margin-left:0px !important;margin-right:0px !important;
    }

    *, *::before, *::after {
        box-sizing: border-box;
    }

    .lpsgs-content-area{
        padding:0px !important;
    }
    .content{
        padding:0px !important;
    }

    /* ── Page wrapper ── */
    .enq-page {
        min-height: 100vh;
        padding: 2rem 1rem 4rem;
        font-family: 'DM Sans', sans-serif;
        background: #f0f4ff;
        background-image: radial-gradient(ellipse at 15% 15%, rgba(99,102,241,0.15) 0%, transparent 55%), radial-gradient(ellipse at 85% 85%, rgba(56,189,248,0.15) 0%, transparent 55%);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ── Page header ── */
    .enq-page-header {
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 900px;
    }

    .enq-page-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: linear-gradient(90deg,#6366f1,#38bdf8);
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 14px;
        border-radius: 20px !important;
        letter-spacing: 0.05em;
        margin-bottom: 10px;
    }

    .enq-page-title {
        font-family: 'Sora',sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #1e1b4b;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .enq-page-desc {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.6;
    }

    /* ── Form container ── */
    .enq-form-container {
        width: 100%;
        max-width: 900px;
    }

    /* ── Section card ── */
    .enq-section {
        background: rgba(255,255,255,0.80);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255,255,255,0.75);
        border-radius: 20px !important;
        padding: 32px;
        box-shadow: 0 4px 20px rgba(80,80,200,0.09);
        margin-bottom: 24px;
    }

    .enq-section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1.5px solid #e0e7ff;
    }

    .enq-section-num {
        width: 36px;
        height: 36px;
        border-radius: 10px !important;
        flex-shrink: 0;
        background: linear-gradient(135deg,#6366f1,#818cf8);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .enq-section-title {
        font-family: 'Sora',sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #1e1b4b;
    }

    .enq-section-icon {
        margin-left: auto;
        font-size: 24px;
        color: #c7d2fe;
    }

    /* ── Content area ── */
    .enq-content {
        font-size: 14px;
        color: #374151;
        line-height: 1.8;
    }

    .enq-content p {
        margin-bottom: 12px;
    }

    .enq-content ul, .enq-content ol {
        margin-left: 20px;
        margin-bottom: 12px;
    }

    /* ── Checkbox with label ── */
    .enq-checkbox-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        background: #f8faff;
        border: 1.5px solid #e0e7ff;
        border-radius: 12px !important;
        margin: 20px 0;
    }

    .enq-checkbox-wrapper input[type="checkbox"] {
        margin-top: 3px;
        width: 18px;
        height: 18px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .enq-checkbox-wrapper label {
        font-size: 13px;
        color: #374151;
        line-height: 1.6;
        margin: 0;
        cursor: pointer;
        flex: 1;
    }

    .enq-checkbox-wrapper label strong {
        color: #1e1b4b;
        font-weight: 600;
    }

    /* ── Note/Warning box ── */
    .enq-note {
        background: #fffbeb;
        border: 1px solid #fde68a;
        border-radius: 10px !important;
        padding: 14px 18px;
        font-size: 13px;
        color: #78350f;
        line-height: 1.7;
        margin: 16px 0;
    }

    .enq-note strong {
        color: #92400e;
        font-weight: 600;
    }

    .enq-note-info {
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        color: #1e3a8a;
    }

    .enq-note-info strong {
        color: #1e40af;
    }

    /* ── OTP Section ── */
    .enq-otp-section {
        background: #f8faff;
        border: 1.5px solid #e0e7ff;
        border-radius: 12px !important;
        padding: 20px;
        margin: 20px 0;
    }

    .enq-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 16px;
    }

    .enq-label {
        font-size: 12px;
        font-weight: 500;
        color: #6b7280;
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 0;
    }

    .enq-label .req {
        color: #ef4444;
        font-size: 13px;
    }

    .enq-field input.form-control,
    .enq-field select.form-control,
    .enq-field textarea.form-control {
        width: 100% !important;
        padding: 10px 12px !important;
        font-size: 14px !important;
        font-family: 'DM Sans',sans-serif !important;
        border: 1.5px solid #e0e7ff !important;
        border-radius: 10px !important;
        background: rgba(248,250,255,0.95) !important;
        color: #1e1b4b !important;
        outline: none !important;
        transition: border-color 0.2s, box-shadow 0.2s !important;
        box-shadow: none !important;
    }

    .enq-field input.form-control:focus,
    .enq-field select.form-control:focus {
        border-color: #6366f1 !important;
        box-shadow: 0 0 0 3px rgba(99,102,241,0.12) !important;
        background: #fff !important;
    }

    /* ── Buttons ── */
    .enq-btn-group {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 24px;
    }

    .enq-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 24px;
        font-family: 'DM Sans',sans-serif;
        font-size: 14px;
        font-weight: 600;
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        transition: opacity 0.2s, transform 0.15s;
        text-decoration: none;
    }

    .enq-btn:hover {
        opacity: 0.9;
        text-decoration: none;
    }

    .enq-btn:active {
        transform: scale(0.97);
    }

    .enq-btn-primary {
        color: #fff;
        background: linear-gradient(90deg,#6366f1,#38bdf8);
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    }

    .enq-btn-secondary {
        color: #374151;
        background: #fff;
        border: 1.5px solid #e5e7eb !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .enq-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* ── Page navigation (for multi-page instructions) ── */
    .enq-page-content {
        display: none;
    }

    .enq-page-content.active {
        display: block;
    }

    .enq-page-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1.5px solid #e0e7ff;
    }

    .enq-page-indicator {
        font-size: 13px;
        color: #6b7280;
        font-weight: 500;
    }

    /* ── Responsive ── */
    @media (max-width: 640px) {
        .enq-section {
            padding: 20px;
        }

        .enq-page-title {
            font-size: 22px;
        }

        .enq-btn-group {
            justify-content: stretch;
        }

        .enq-btn-group .enq-btn {
            flex: 1;
            justify-content: center;
        }
    }

    /* ── Override for old styles ── */
    .btn-warning {
        display: none !important;
    }
       .lpsgs-content-area{
        padding:0px !important;
    }
    .efc-wrap {
        min-height: 100vh;
        padding: 1.5rem 1rem 3rem;
        font-family: 'DM Sans', sans-serif;
        background: #f0f4ff;
        background-image: radial-gradient(ellipse at 10% 10%, rgba(99,102,241,0.12) 0%, transparent 50%), radial-gradient(ellipse at 90% 90%, rgba(56,189,248,0.12) 0%, transparent 50%);
    }

    /* ── Topbar ── */
    .efc-topbar {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 16px !important;
        padding: 14px 20px;
        margin-bottom: 24px;
        box-shadow: 0 4px 20px rgba(80,80,200,0.08);
    }

    .efc-topbar-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 17px;
        flex-shrink: 0;
    }

    .efc-topbar-title {
        font-family: 'Sora', sans-serif;
        font-size: 17px;
        font-weight: 700;
        color: #1e1b4b;
    }

    /* ── Main card ── */
    .efc-card {
        background: rgba(255,255,255,0.82);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.75);
        border-radius: 20px !important;
        box-shadow: 0 4px 24px rgba(80,80,200,0.09);
        overflow: hidden;
        padding: 24px 28px 28px;
    }

    /* ── Table ── */
    .efc-table-wrap {
        overflow-x: auto;
        border-radius: 12px !important;
    }

    .efc-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13px;
        color: #1e1b4b;
    }

        .efc-table thead tr {
            background: linear-gradient(90deg, #6366f1, #38bdf8);
        }

        .efc-table thead th {
            padding: 12px 16px;
            font-family: 'Sora', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            text-align: left;
            letter-spacing: 0.03em;
            white-space: nowrap;
            border: none;
        }

            .efc-table thead th:last-child {
                text-align: right;
            }

        .efc-table tbody tr {
            border-bottom: 1px solid rgba(99,102,241,0.08);
            transition: background 0.15s;
        }

            .efc-table tbody tr:hover {
                background: rgba(99,102,241,0.04);
            }

        .efc-table tbody td {
            padding: 12px 16px;
            font-size: 13px;
            color: #374151;
            border: none;
            vertical-align: middle;
        }

            .efc-table tbody td:not(:first-child) {
                text-align: right;
            }
        /* Total row */
        .efc-table tbody tr.efc-total-row {
            background: rgba(99,102,241,0.06);
            border-top: 2px solid rgba(99,102,241,0.15);
            border-bottom: none;
        }

            .efc-table tbody tr.efc-total-row td {
                font-family: 'Sora', sans-serif;
                font-weight: 700;
                font-size: 13px;
                color: #1e1b4b;
            }

    /* ── Payment section ── */
    .efc-payment-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid rgba(99,102,241,0.10);
    }

    .efc-pay-label {
        font-size: 13px;
        font-weight: 600;
        color: #6b7280;
        white-space: nowrap;
    }

    /* Pay button */
    .efc-btn-pay {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #fff !important;
        background: linear-gradient(90deg, #6366f1, #38bdf8);
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        text-decoration: none !important;
        box-shadow: 0 4px 14px rgba(99,102,241,0.28);
        transition: opacity 0.2s, transform 0.15s;
        animation: efc-pulse 2s ease-in-out infinite;
    }

        .efc-btn-pay:hover {
            opacity: 0.9;
        }

        .efc-btn-pay:active {
            transform: scale(0.97);
        }

    @keyframes efc-pulse {
        0%, 100% {
            box-shadow: 0 4px 14px rgba(99,102,241,0.28);
        }

        50% {
            box-shadow: 0 4px 22px rgba(99,102,241,0.50);
        }
    }

    /* Back / danger button */
    .efc-btn-back {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #b91c1c !important;
        background: #fee2e2;
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        text-decoration: none !important;
        transition: filter 0.15s, transform 0.12s;
    }

        .efc-btn-back:hover {
            filter: brightness(0.93);
        }

        .efc-btn-back:active {
            transform: scale(0.97);
        }

    /* Note / disclaimer */
    .efc-note {
        margin-top: 18px;
        font-size: 12px;
        color: #9ca3af;
        line-height: 1.6;
    }

        .efc-note p {
            margin: 3px 0;
        }

    @media (max-width: 600px) {
        .efc-card {
            padding: 16px;
        }

        .efc-payment-row {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    *, *::before, *::after {
        box-sizing: border-box;
    }

    .edb-page {
        min-height: 100vh;
        padding: 1.5rem 1rem 3rem;
        font-family: 'DM Sans', sans-serif;
        background: #f0f4ff;
        background-image: radial-gradient(ellipse at 10% 10%, rgba(99,102,241,0.12) 0%, transparent 50%), radial-gradient(ellipse at 90% 90%, rgba(56,189,248,0.12) 0%, transparent 50%);
    }

    /* ── Top bar ── */
    .edb-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 16px !important;
        padding: 14px 20px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(80,80,200,0.08);
    }

    .edb-topbar-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .edb-topbar-title {
        font-family: 'Sora', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #1e1b4b;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .edb-icon-bg {
        width: 36px;
        height: 36px;
        border-radius: 10px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        flex-shrink: 0;
    }

    /* ── Buttons ── */
    .edb-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        border: none;
        border-radius: 10px !important;
        cursor: pointer;
        transition: opacity .2s, transform .15s;
        text-decoration: none;
        white-space: nowrap;
    }

        .edb-btn:hover {
            opacity: .88;
            text-decoration: none;
        }

        .edb-btn:active {
            transform: scale(0.97);
        }

    .edb-btn-back {
        background: #e0e7ff;
        color: #3730a3 !important;
    }

    .edb-btn-print {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 12px;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        border: none;
        border-radius: 8px !important;
        cursor: pointer;
        color: #fff !important;
        background: linear-gradient(90deg, #6366f1, #38bdf8);
        box-shadow: 0 2px 8px rgba(99,102,241,0.22);
        transition: opacity .2s, transform .12s;
        text-decoration: none;
        white-space: nowrap;
        animation: edb-pulse 2s ease-in-out infinite;
    }

        .edb-btn-print:hover {
            opacity: .88;
            text-decoration: none;
        }

        .edb-btn-print:active {
            transform: scale(0.96);
        }

    @keyframes edb-pulse {
        0%, 100% {
            box-shadow: 0 2px 8px rgba(99,102,241,0.22);
        }

        50% {
            box-shadow: 0 4px 18px rgba(99,102,241,0.44);
        }
    }

    /* ── Card ── */
    .edb-card {
        background: rgba(255,255,255,0.82);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.75);
        border-radius: 20px !important;
        box-shadow: 0 4px 24px rgba(80,80,200,0.09);
        overflow: hidden;
    }

    /* ── Table ── */
    .edb-table-wrap {
        overflow-x: auto;
        padding: 0 0 4px;
    }

    .edb-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13px;
        font-family: 'DM Sans', sans-serif;
    }

        .edb-table thead tr {
            background: linear-gradient(90deg, rgba(99,102,241,0.10), rgba(56,189,248,0.06));
            border-bottom: 2px solid rgba(99,102,241,0.18);
        }

        .edb-table thead th {
            padding: 12px 16px;
            font-family: 'Sora', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: #3730a3;
            text-transform: uppercase;
            letter-spacing: .05em;
            white-space: nowrap;
            border: none;
            text-align: left;
        }

        .edb-table tbody tr {
            border-bottom: 1px dashed rgba(99,102,241,0.09);
            transition: background .15s;
        }

            .edb-table tbody tr:last-child {
                border-bottom: none;
            }

            .edb-table tbody tr:hover td {
                background: rgba(99,102,241,0.04);
            }

        .edb-table tbody td {
            padding: 12px 16px;
            color: #1e1b4b;
            font-size: 13px;
            vertical-align: middle;
            border: none;
        }

    /* ── Status badges ── */
    .edb-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        font-weight: 600;
        padding: 3px 9px;
        border-radius: 20px !important;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .edb-badge-success {
        background: #dcfce7;
        color: #15803d;
    }

    .edb-badge-danger {
        background: #fee2e2;
        color: #b91c1c;
    }

    .edb-badge-info {
        background: #dbeafe;
        color: #1d4ed8;
    }

    .edb-badge-warning {
        background: #fef9c3;
        color: #92400e;
    }

    /* ── GSS refund note ── */
    .edb-refund-note {
        font-size: 11px;
        color: #b91c1c;
        background: #fff1f1;
        border-left: 3px solid #f87171;
        border-radius: 5px !important;
        padding: 4px 8px;
        margin-top: 5px;
        display: block;
        line-height: 1.4;
    }

    /* ── Empty state ── */
    .edb-empty {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 4rem 2rem;
        text-align: center;
        background: rgba(255,255,255,0.75);
        border-radius: 20px !important;
        border: 2px dashed #c7d2fe;
    }

    .edb-empty-icon {
        width: 72px;
        height: 72px;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #fff;
    }

    .edb-empty h3 {
        font-family: 'Sora', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #1e1b4b;
        margin: 0;
    }

    .edb-empty p {
        font-size: 13px;
        color: #6b7280;
        margin: 0;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .edb-page {
            padding: 1rem 0.75rem 2rem;
        }

        .edb-topbar {
            flex-direction: column;
            align-items: flex-start;
        }

        .edb-topbar-left {
            width: 100%;
            flex-wrap: wrap;
        }

        .edb-table thead th,
        .edb-table tbody td {
            padding: 9px 11px;
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .edb-topbar-title {
            font-size: 15px;
        }

        .edb-table thead th {
            font-size: 10px;
        }

        .edb-table tbody td {
            font-size: 11px;
        }

        .edb-card {
            border-radius: 14px !important;
        }
    }

    .edb-footer {
        width: 100%;
        margin-top: 3rem;
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(99, 102, 241, 0.12);
        box-shadow: 0 -4px 20px rgba(80, 80, 200, 0.06);
        font-family: 'DM Sans', sans-serif;
    }

    .edb-footer-inner {
        /*max-width: 1200px;*/
        margin: 0 auto;
        padding: 16px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    .edb-footer-copy {
        font-size: 12px;
        color: #6b7280;
        margin: 0;
    }

        .edb-footer-copy strong {
            font-weight: 600;
            color: #1e1b4b;
        }

    .edb-footer-powered {
        font-size: 12px;
        color: #6b7280;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .edb-footer-powered a {
            font-weight: 600;
            background: linear-gradient(90deg, #6366f1, #38bdf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            transition: opacity 0.15s;
        }

            .edb-footer-powered a:hover {
                opacity: 0.75;
            }

    @media (max-width: 576px) {
        .edb-footer-inner {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }

     /* ── Navbar shell ── */
    .edb-navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(99, 102, 241, 0.12);
        box-shadow: 0 4px 20px rgba(80, 80, 200, 0.08);
        font-family: 'DM Sans', sans-serif;
    }

    .edb-navbar-inner {
        /*max-width: 1200px;*/
        margin: 0 auto;
        padding: 0 20px;
        height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    /* ── Brand ── */
    .edb-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none !important;
        flex-shrink: 0;
    }

    .edb-brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px !important;
        background: linear-gradient(135deg, #6366f1, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(99,102,241,0.28);
        flex-shrink: 0;
    }

    .edb-brand-name {
        font-family: 'Sora', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #1e1b4b;
        line-height: 1.2;
        display: block;
    }

    .edb-brand-sub {
        font-size: 11px;
        font-weight: 400;
        color: #6b7280;
        display: block;
    }

    /* ── Nav links ── */
    .edb-nav {
        display: flex;
        align-items: center;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .edb-nav li {
            list-style: none;
        }

        .edb-nav a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: 9px !important;
            font-size: 13px;
            font-weight: 500;
            color: #374151 !important;
            text-decoration: none !important;
            transition: background 0.15s, color 0.15s;
            white-space: nowrap;
        }

            .edb-nav a:hover {
                background: rgba(99,102,241,0.08);
                color: #4338ca !important;
            }

            .edb-nav a i {
                font-size: 13px;
                color: #6366f1;
            }

        /* Logout — danger tint on hover */
        .edb-nav .edb-nav-logout:hover {
            background: #fee2e2;
            color: #b91c1c !important;
        }

            .edb-nav .edb-nav-logout:hover i {
                color: #b91c1c;
            }

        /* User pill (non-clickable display) */
        .edb-nav .edb-user-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 20px !important;
            background: #e0e7ff;
            font-size: 12px;
            font-weight: 600;
            color: #3730a3 !important;
            cursor: default;
        }

            .edb-nav .edb-user-pill i {
                color: #6366f1;
                font-size: 12px;
            }

            .edb-nav .edb-user-pill:hover {
                background: #e0e7ff;
                color: #3730a3 !important;
            }

    /* ── Mobile toggle ── */
    .edb-toggle {
        display: none;
        background: none;
        border: 1px solid rgba(99,102,241,0.25);
        border-radius: 8px !important;
        padding: 7px 10px;
        cursor: pointer;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        justify-content: center;
    }

        .edb-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #6366f1;
            border-radius: 2px !important;
            transition: transform 0.2s, opacity 0.2s;
        }

    /* ── Mobile drawer ── */
    .edb-nav-collapse {
        display: flex;
    }

    @media (max-width: 768px) {
        .edb-toggle {
            display: flex;
        }

        .edb-nav-collapse {
            display: none;
            position: absolute;
            top: 62px;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(99,102,241,0.12);
            box-shadow: 0 8px 24px rgba(80,80,200,0.10);
            padding: 10px 16px 14px;
        }

            .edb-nav-collapse.open {
                display: block;
            }

        .edb-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            width: 100%;
        }

            .edb-nav li {
                width: 100%;
            }

            .edb-nav a {
                width: 100%;
            }
    }