@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-cw9cbern9u] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--bg);
}

/* ── Header ── */
.admin-header[b-cw9cbern9u] {
    height: 64px;
    background: var(--brand-navy);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    box-shadow: 0 2px 12px rgba(0,14,60,0.20);
    border-bottom: 2px solid var(--brand-yellow);
    z-index: 1000;
    flex-shrink: 0;
}

.header-left[b-cw9cbern9u] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-logo[b-cw9cbern9u] {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-icon[b-cw9cbern9u] {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text[b-cw9cbern9u] {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
    color: white;
}

.menu-toggle[b-cw9cbern9u] {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.15s;
}
.menu-toggle:hover[b-cw9cbern9u] { background: rgba(255,255,255,0.15); }

/* ── Header right ── */
.header-right[b-cw9cbern9u] { display: flex; align-items: center; }

.user-profile[b-cw9cbern9u] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info[b-cw9cbern9u] { text-align: right; }

.user-name[b-cw9cbern9u] {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.95);
}

.user-role[b-cw9cbern9u] {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
}

.user-avatar[b-cw9cbern9u] {
    width: 36px;
    height: 36px;
    background: var(--brand-yellow);
    color: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.logout-btn[b-cw9cbern9u] {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    margin-left: 4px;
}
.logout-btn:hover[b-cw9cbern9u] {
    background: rgba(255,255,255,0.16);
    color: white;
}

/* ── Layout body ── */
.admin-container[b-cw9cbern9u] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.admin-sidebar[b-cw9cbern9u] {
    width: 256px;
    background-color: white;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    flex-shrink: 0;
}

.admin-main[b-cw9cbern9u] {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px;
    padding-bottom: 80px;
}

.content-wrapper[b-cw9cbern9u] {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

/* ── Mobile drawer ── */
.mobile-drawer-overlay[b-cw9cbern9u] {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.55);
    backdrop-filter: blur(2px);
    z-index: 1001;
}

.mobile-sidebar[b-cw9cbern9u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 272px;
    height: 100vh;
    background: white;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(10,22,40,0.14);
}

.mobile-sidebar-header[b-cw9cbern9u] {
    height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: var(--brand-navy);
    color: white;
}

.close-btn[b-cw9cbern9u] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}
.close-btn:hover[b-cw9cbern9u] { background: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
    .admin-main[b-cw9cbern9u] { padding: 20px 16px 80px; }
}
/* /Layout/AdminSidebar.razor.rz.scp.css */
.admin-sidebar-content[b-cp9twtnvwd] {
    padding: 16px 0 24px;
}

.sidebar-section[b-cp9twtnvwd] {
    margin-bottom: 4px;
}

.section-title[b-cp9twtnvwd] {
    padding: 12px 20px 5px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link[b-cp9twtnvwd] {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 20px;
    color: var(--text-2);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background 0.15s, color 0.15s;
    border-left: 3px solid transparent;
    border-radius: 0;
}

.nav-link i[b-cp9twtnvwd] {
    font-size: 1rem;
    width: 18px;
    text-align: center;
    color: var(--text-3);
    transition: color 0.15s;
    flex-shrink: 0;
}

.nav-link:hover[b-cp9twtnvwd] {
    background-color: var(--bg);
    color: var(--brand-navy);
}
.nav-link:hover i[b-cp9twtnvwd] { color: var(--brand-blue); }

.nav-link.active[b-cp9twtnvwd] {
    background-color: rgba(0,35,149,0.06);
    color: var(--brand-navy);
    font-weight: 600;
    border-left-color: var(--brand-yellow);
}
.nav-link.active i[b-cp9twtnvwd] { color: var(--brand-blue); }

.nav-link.disabled[b-cp9twtnvwd] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
/* /Layout/InstitutionLayout.razor.rz.scp.css */
.institution-layout[b-8d4ea27kpj] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--bg);
}

/* ── Header ── */
.institution-header[b-8d4ea27kpj] {
    height: 64px;
    background: var(--brand-blue);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    box-shadow: 0 2px 12px rgba(0,18,80,0.22);
    border-bottom: 2px solid var(--brand-yellow);
    z-index: 1000;
    flex-shrink: 0;
}

.header-left[b-8d4ea27kpj] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.institution-logo[b-8d4ea27kpj] {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-icon[b-8d4ea27kpj] {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text[b-8d4ea27kpj] {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
    color: white;
}

.menu-toggle[b-8d4ea27kpj] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.15s;
}
.menu-toggle:hover[b-8d4ea27kpj] { background: rgba(255,255,255,0.18); }

/* ── Header right ── */
.header-right[b-8d4ea27kpj] { display: flex; align-items: center; }

.user-profile[b-8d4ea27kpj] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info[b-8d4ea27kpj] { text-align: right; }

.user-name[b-8d4ea27kpj] {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.95);
}

.user-role[b-8d4ea27kpj] {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
}

.user-avatar[b-8d4ea27kpj] {
    width: 36px;
    height: 36px;
    background: var(--brand-yellow);
    color: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.logout-btn[b-8d4ea27kpj] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    margin-left: 4px;
}
.logout-btn:hover[b-8d4ea27kpj] {
    background: rgba(255,255,255,0.18);
    color: white;
}

/* ── Layout body ── */
.institution-container[b-8d4ea27kpj] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.institution-sidebar[b-8d4ea27kpj] {
    width: 256px;
    background-color: white;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    flex-shrink: 0;
}

.institution-main[b-8d4ea27kpj] {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px;
    padding-bottom: 80px;
}

.content-wrapper[b-8d4ea27kpj] {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

/* ── Mobile drawer ── */
.mobile-drawer-overlay[b-8d4ea27kpj] {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.55);
    backdrop-filter: blur(2px);
    z-index: 1001;
}

.mobile-sidebar[b-8d4ea27kpj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 272px;
    height: 100vh;
    background: white;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(10,22,40,0.14);
}

.mobile-sidebar-header[b-8d4ea27kpj] {
    height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: var(--brand-blue);
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.close-btn[b-8d4ea27kpj] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}
.close-btn:hover[b-8d4ea27kpj] { background: rgba(255,255,255,0.2); }

@media (max-width: 992px) {
    .institution-main[b-8d4ea27kpj] { padding: 20px 16px 80px; }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-m6aci1snrp] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-m6aci1snrp] {
    flex: 1;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-6daqioqy7x] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-6daqioqy7x] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-6daqioqy7x] {
    font-size: 1.1rem;
}

.bi[b-6daqioqy7x] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-6daqioqy7x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-6daqioqy7x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-6daqioqy7x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-6daqioqy7x] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-6daqioqy7x] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-6daqioqy7x] {
        padding-bottom: 1rem;
    }

    .nav-item[b-6daqioqy7x]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-6daqioqy7x]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-6daqioqy7x]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-6daqioqy7x] {
        display: none;
    }

    .collapse[b-6daqioqy7x] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-6daqioqy7x] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Accomodations/View-accomodation.razor.rz.scp.css */
.detail-container[b-ijfyvwrs24] {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.back-link[b-ijfyvwrs24] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
    transition: transform 0.2s;
}

.back-link:hover[b-ijfyvwrs24] {
    transform: translateX(-5px);
}

.detail-grid[b-ijfyvwrs24] {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .detail-grid[b-ijfyvwrs24] {
        grid-template-columns: 1fr;
    }
}

/* Gallery */
.gallery-main[b-ijfyvwrs24] {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.gallery-img[b-ijfyvwrs24] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Section */
.info-card[b-ijfyvwrs24] {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.detail-title[b-ijfyvwrs24] {
    font-weight: 800;
    color: var(--blue);
    font-size: 2rem;
    margin-bottom: 12px;
}

.detail-location[b-ijfyvwrs24] {
    font-size: 1.1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.detail-badge-row[b-ijfyvwrs24] {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.detail-badge[b-ijfyvwrs24] {
    padding: 6px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
}

.badge-blue[b-ijfyvwrs24] { background: #eff6ff; color: var(--blue); }
.badge-green[b-ijfyvwrs24] { background: #f0fdf4; color: var(--green); }

.detail-section[b-ijfyvwrs24] {
    margin-bottom: 32px;
}

.section-title[b-ijfyvwrs24] {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
}

.amenities-list[b-ijfyvwrs24] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.amenity-item[b-ijfyvwrs24] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 0.95rem;
}

.amenity-item i[b-ijfyvwrs24] {
    color: var(--blue);
    font-size: 1.2rem;
}

/* Sidebar / Booking Card */
.booking-card[b-ijfyvwrs24] {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    position: sticky;
    top: 24px;
}

.price-display[b-ijfyvwrs24] {
    margin-bottom: 24px;
}

.price-amount[b-ijfyvwrs24] {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--blue);
}

.price-period[b-ijfyvwrs24] {
    color: #666;
    font-size: 1rem;
}

.booking-stats[b-ijfyvwrs24] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-item[b-ijfyvwrs24] {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.stat-label[b-ijfyvwrs24] { color: #64748b; }
.stat-value[b-ijfyvwrs24] { font-weight: 700; color: var(--dark-gray); }

.contact-info[b-ijfyvwrs24] {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.contact-item[b-ijfyvwrs24] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
/* /Pages/Accomodations/View-accomodations.razor.rz.scp.css */
/* Hero Section */
.acc-header[b-kxzw7msquw] {
    background: linear-gradient(rgba(0, 35, 149, 0.85), rgba(0, 119, 73, 0.85)), 
                url('/uni-campus-placeholder.jpg') center/cover no-repeat;
    padding: 60px 24px;
    text-align: center;
    color: white;
    border-radius: 16px;
    margin-bottom: 32px;
}

.header-title[b-kxzw7msquw] {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 8px;
}

.header-subtitle[b-kxzw7msquw] {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Discovery Layout */
.discovery-container[b-kxzw7msquw] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .discovery-container[b-kxzw7msquw] {
        grid-template-columns: 1fr;
    }
}

/* Filters Sidebar */
.filter-sidebar[b-kxzw7msquw] {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    height: fit-content;
    position: sticky;
    top: 24px;
}

.filter-section[b-kxzw7msquw] {
    margin-bottom: 24px;
}

.filter-title[b-kxzw7msquw] {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Accommodation Grid */
.acc-grid[b-kxzw7msquw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.acc-card[b-kxzw7msquw] {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.acc-card:hover[b-kxzw7msquw] {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.acc-img-wrapper[b-kxzw7msquw] {
    position: relative;
    height: 200px;
}

.acc-img[b-kxzw7msquw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acc-badge[b-kxzw7msquw] {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.acc-badge.nsfas[b-kxzw7msquw] {
    background: var(--green);
}

.acc-price[b-kxzw7msquw] {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--blue);
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.acc-body[b-kxzw7msquw] {
    padding: 20px;
    flex-grow: 1;
}

.acc-title[b-kxzw7msquw] {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

.acc-location[b-kxzw7msquw] {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.acc-amenities[b-kxzw7msquw] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.amenity-tag[b-kxzw7msquw] {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.acc-footer[b-kxzw7msquw] {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beds-count[b-kxzw7msquw] {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.beds-count i[b-kxzw7msquw] {
    color: var(--blue);
}
/* /Pages/Admin/Admin.razor.rz.scp.css */
/* ── Admin Dashboard ──────────────────────────────────────────────────────── */
.admin-dashboard[b-e725jv1nmm] {
    padding-bottom: 2rem;
}

/* Stats grid */
.stats-grid[b-e725jv1nmm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card[b-e725jv1nmm] {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s;
}
.stat-card:hover[b-e725jv1nmm] { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-info h3[b-e725jv1nmm] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 6px;
}

.stat-value[b-e725jv1nmm] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-icon[b-e725jv1nmm] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-card.students    .stat-icon[b-e725jv1nmm] { background: rgba(0,35,149,0.08);   color: var(--brand-blue); }
.stat-card.institutions .stat-icon[b-e725jv1nmm] { background: rgba(0,119,73,0.08);  color: var(--brand-green); }
.stat-card.applications .stat-icon[b-e725jv1nmm] { background: rgba(255,184,28,0.12); color: #a06e00; }
.stat-card.pending      .stat-icon[b-e725jv1nmm] { background: rgba(220,38,38,0.08); color: #dc2626; }

.stat-card.students[b-e725jv1nmm]    { border-top: 3px solid var(--brand-blue); }
.stat-card.institutions[b-e725jv1nmm] { border-top: 3px solid var(--brand-green); }
.stat-card.applications[b-e725jv1nmm] { border-top: 3px solid var(--brand-yellow); }
.stat-card.pending[b-e725jv1nmm]      { border-top: 3px solid #ef4444; }

/* Dashboard panel */
.dashboard-panel[b-e725jv1nmm] {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.22s;
}
.dashboard-panel:hover[b-e725jv1nmm] { box-shadow: var(--shadow-md); }

.panel-header[b-e725jv1nmm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.panel-title[b-e725jv1nmm] {
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0;
    letter-spacing: -0.01em;
}

/* Admin table */
.admin-table[b-e725jv1nmm] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.admin-table thead tr[b-e725jv1nmm] { background: var(--bg); }
.admin-table thead th[b-e725jv1nmm] {
    padding: 10px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1.5px solid var(--border);
}
.admin-table tbody tr[b-e725jv1nmm] {
    border-bottom: 1px solid var(--border);
    transition: background 0.14s;
}
.admin-table tbody tr:last-child[b-e725jv1nmm] { border-bottom: none; }
.admin-table tbody tr:hover[b-e725jv1nmm] { background: var(--bg); }
.admin-table tbody td[b-e725jv1nmm] { padding: 12px 14px; vertical-align: middle; color: var(--text-1); }

/* Status badges */
.status-badge[b-e725jv1nmm] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.status-active[b-e725jv1nmm]   { background: rgba(0,119,73,0.10);   color: #005c38; }
.status-pending[b-e725jv1nmm]  { background: rgba(255,184,28,0.12); color: #7a5200; }
.status-inactive[b-e725jv1nmm] { background: rgba(107,114,128,0.10); color: #374151; }
.status-suspended[b-e725jv1nmm] { background: rgba(220,38,38,0.08); color: #b91c1c; }

/* Quick actions */
.quick-actions[b-e725jv1nmm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.action-card[b-e725jv1nmm] {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-1);
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s, border-color 0.18s;
}
.action-card:hover[b-e725jv1nmm] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue);
    color: var(--brand-navy);
}

.action-icon[b-e725jv1nmm] {
    font-size: 1.75rem;
    color: var(--brand-blue);
}

.action-title[b-e725jv1nmm] {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}
/* /Pages/Admin/AdminApplications.razor.rz.scp.css */
/* ── Admin Applications Page ──────────────────────────────────────────────── */

.app-status-pill[b-aaabcfctzo] {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.status-submitted[b-aaabcfctzo]  { background: rgba(0,35,149,0.08);   color: var(--brand-blue); }
.status-received[b-aaabcfctzo]   { background: rgba(124,58,237,0.08); color: #6d28d9; }
.status-review[b-aaabcfctzo]     { background: rgba(255,184,28,0.12); color: #7a5200; }
.status-accepted[b-aaabcfctzo]   { background: rgba(0,119,73,0.10);   color: #005c38; }
.status-declined[b-aaabcfctzo]   { background: rgba(220,38,38,0.08);  color: #b91c1c; }
.status-withdrawn[b-aaabcfctzo]  { background: var(--bg-alt);          color: var(--text-2); }

.app-row[b-aaabcfctzo] { transition: background 0.14s; }
.app-row:hover[b-aaabcfctzo] { background: var(--bg); }

.page-ellipsis[b-aaabcfctzo] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

:deep(.mud-table)[b-aaabcfctzo] {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid var(--border) !important;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
:deep(.mud-table-head .mud-table-cell)[b-aaabcfctzo] {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--text-3) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--bg) !important;
}
:deep(.mud-table-row:hover)[b-aaabcfctzo] { background: var(--bg) !important; }
/* /Pages/Admin/AdminCourses.razor.rz.scp.css */
/* ── Page layout ─────────────────────────────────────────────────────────── */
.ac-page[b-ve52tno4wt] {
    padding-bottom: 3rem;
}

.ac-page-header[b-ve52tno4wt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    gap: 1rem;
}

.ac-title[b-ve52tno4wt] {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.ac-subtitle[b-ve52tno4wt] {
    color: var(--text-2);
    font-size: 0.875rem;
    margin: 0;
}

.ac-add-btn[b-ve52tno4wt] {
    flex-shrink: 0;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
}

/* ── Filter Panel ─────────────────────────────────────────────────────────── */
.ac-filter-panel[b-ve52tno4wt] {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.ac-search-group .input-group-text[b-ve52tno4wt] {
    background: white;
    border-right: none;
    color: var(--text-3);
}

.ac-search-group .form-control[b-ve52tno4wt] {
    border-left: none;
}

.ac-search-group .form-control:focus[b-ve52tno4wt] {
    box-shadow: none;
    border-color: var(--border);
}

/* ── Results bar ─────────────────────────────────────────────────────────── */
.ac-results-bar[b-ve52tno4wt] {
    margin-bottom: 1rem;
    padding: 0 0.25rem;
}

/* ── Card Grid ───────────────────────────────────────────────────────────── */
.ac-card-grid[b-ve52tno4wt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

/* ── Course Card ─────────────────────────────────────────────────────────── */
.ac-card[b-ve52tno4wt] {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.15s;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.ac-card:hover[b-ve52tno4wt] {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.ac-card-accent[b-ve52tno4wt] {
    height: 5px;
    width: 100%;
    flex-shrink: 0;
}

.ac-card-body[b-ve52tno4wt] {
    padding: 1.25rem 1.25rem 1rem;
    flex: 1;
}

.ac-card-top[b-ve52tno4wt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.875rem;
}

.ac-course-icon[b-ve52tno4wt] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ac-nqf-badge[b-ve52tno4wt] {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: #ede9fe;
    color: #5b21b6;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.ac-course-name[b-ve52tno4wt] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.ac-course-code[b-ve52tno4wt] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.875rem;
}

.ac-meta-list[b-ve52tno4wt] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ac-meta-row[b-ve52tno4wt] {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--text-2);
}

.ac-meta-row i[b-ve52tno4wt] {
    font-size: 0.8rem;
    color: var(--text-3);
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.ac-fee-row[b-ve52tno4wt] {
    color: var(--text-1);
}

/* ── Card Footer ─────────────────────────────────────────────────────────── */
.ac-card-footer[b-ve52tno4wt] {
    display: flex;
    gap: 8px;
    padding: 0.875rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.ac-action-btn[b-ve52tno4wt] {
    flex: 1;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 8px;
}

.ac-action-btn-icon[b-ve52tno4wt] {
    width: 38px;
    padding: 5px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Skeleton card ───────────────────────────────────────────────────────── */
.ac-card-skeleton[b-ve52tno4wt] {
    min-height: 200px;
    padding: 1.25rem;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.ac-empty[b-ve52tno4wt] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.ac-empty-icon[b-ve52tno4wt] {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.ac-empty-title[b-ve52tno4wt] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
}

.ac-empty-sub[b-ve52tno4wt] {
    color: var(--text-2);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ── Modal ───────────────────────────────────────────────────────────────── */
.ac-modal[b-ve52tno4wt] {
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

.ac-modal-header[b-ve52tno4wt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
    background: var(--brand-blue);
    color: white;
}

.ac-modal-title[b-ve52tno4wt] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.1rem;
    color: white;
}

.ac-modal-subtitle[b-ve52tno4wt] {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

/* ── Form sections ───────────────────────────────────────────────────────── */
.ac-form-section[b-ve52tno4wt] {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
}

.ac-form-section:last-of-type[b-ve52tno4wt] {
    border-bottom: none;
}

.ac-section-label[b-ve52tno4wt] {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-3);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.ac-section-label i[b-ve52tno4wt] {
    font-size: 0.75rem;
}

/* ── Currency select ─────────────────────────────────────────────────────── */
.ac-currency-select[b-ve52tno4wt] {
    border-right: none;
    border-radius: 6px 0 0 6px !important;
}

/* ── Pagination ──────────────────────────────────────────────────────────── */
.page-ellipsis[b-ve52tno4wt] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    padding-top: 2px;
}

@media (max-width: 640px) {
    .ac-page-header[b-ve52tno4wt] {
        flex-direction: column;
    }

    .ac-add-btn[b-ve52tno4wt] {
        width: 100%;
    }

    .ac-card-grid[b-ve52tno4wt] {
        grid-template-columns: 1fr;
    }

    .ac-modal-header[b-ve52tno4wt] {
        padding: 1.25rem;
    }

    .ac-form-section[b-ve52tno4wt] {
        padding: 1rem 1.25rem;
    }
}
/* /Pages/Admin/AdminFaculties.razor.rz.scp.css */
/* ── Page layout ─────────────────────────────────────────────────────────── */
.af-page[b-xq0cgzjhmh] {
    padding-bottom: 3rem;
}

.af-page-header[b-xq0cgzjhmh] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    gap: 1rem;
}

.af-title[b-xq0cgzjhmh] {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.af-subtitle[b-xq0cgzjhmh] {
    color: var(--text-2);
    font-size: 0.875rem;
    margin: 0;
}

.af-add-btn[b-xq0cgzjhmh] {
    flex-shrink: 0;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
}

/* ── Filter Panel ─────────────────────────────────────────────────────────── */
.af-filter-panel[b-xq0cgzjhmh] {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.af-search-group .input-group-text[b-xq0cgzjhmh] {
    background: white;
    border-right: none;
    color: var(--text-3);
}

.af-search-group .form-control[b-xq0cgzjhmh] {
    border-left: none;
}

.af-search-group .form-control:focus[b-xq0cgzjhmh] {
    box-shadow: none;
    border-color: var(--border);
}

/* ── Results bar ─────────────────────────────────────────────────────────── */
.af-results-bar[b-xq0cgzjhmh] {
    margin-bottom: 1rem;
    padding: 0 0.25rem;
}

/* ── Card Grid ───────────────────────────────────────────────────────────── */
.af-card-grid[b-xq0cgzjhmh] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

/* ── Faculty Card ────────────────────────────────────────────────────────── */
.af-card[b-xq0cgzjhmh] {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.15s;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.af-card:hover[b-xq0cgzjhmh] {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.af-card-accent[b-xq0cgzjhmh] {
    height: 5px;
    width: 100%;
    flex-shrink: 0;
}

.af-card-body[b-xq0cgzjhmh] {
    padding: 1.25rem 1.25rem 1rem;
    flex: 1;
}

.af-card-top[b-xq0cgzjhmh] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.875rem;
}

.af-faculty-icon[b-xq0cgzjhmh] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.af-accredited-badge[b-xq0cgzjhmh] {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.badge-accredited[b-xq0cgzjhmh]     { background: #d1fae5; color: #065f46; }
.badge-not-accredited[b-xq0cgzjhmh] { background: #fef3c7; color: #92400e; }

.af-faculty-name[b-xq0cgzjhmh] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.af-faculty-code[b-xq0cgzjhmh] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.875rem;
}

.af-meta-list[b-xq0cgzjhmh] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.af-meta-row[b-xq0cgzjhmh] {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--text-2);
}

.af-meta-row i[b-xq0cgzjhmh] {
    font-size: 0.8rem;
    color: var(--text-3);
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* ── Card Footer ─────────────────────────────────────────────────────────── */
.af-card-footer[b-xq0cgzjhmh] {
    display: flex;
    gap: 8px;
    padding: 0.875rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.af-action-btn[b-xq0cgzjhmh] {
    flex: 1;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 8px;
}

/* ── Skeleton card ───────────────────────────────────────────────────────── */
.af-card-skeleton[b-xq0cgzjhmh] {
    min-height: 200px;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.af-empty[b-xq0cgzjhmh] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.af-empty-icon[b-xq0cgzjhmh] {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.af-empty-title[b-xq0cgzjhmh] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
}

.af-empty-sub[b-xq0cgzjhmh] {
    color: var(--text-2);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ── Pagination ──────────────────────────────────────────────────────────── */
.page-ellipsis[b-xq0cgzjhmh] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    padding-top: 2px;
}

@media (max-width: 640px) {
    .af-page-header[b-xq0cgzjhmh] {
        flex-direction: column;
    }

    .af-add-btn[b-xq0cgzjhmh] {
        width: 100%;
    }

    .af-card-grid[b-xq0cgzjhmh] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Admin/AdminUniversities.razor.rz.scp.css */
/* ── Admin Universities Page ──────────────────────────────────────────────── */

:deep(.mud-card)[b-6v6sr2jkn0] {
    border-radius: 16px !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s !important;
    animation: scaleIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
:deep(.mud-card:hover)[b-6v6sr2jkn0] {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-lg) !important;
}

:deep(.mud-table)[b-6v6sr2jkn0] {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid var(--border) !important;
}
:deep(.mud-table-head .mud-table-cell)[b-6v6sr2jkn0] {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--text-3) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--bg) !important;
}
:deep(.mud-table-row:hover)[b-6v6sr2jkn0] { background: var(--bg) !important; }

:deep(.mud-input-root)[b-6v6sr2jkn0] {
    border-radius: 10px !important;
    transition: box-shadow 0.2s;
}
:deep(.mud-input-root:focus-within)[b-6v6sr2jkn0] {
    box-shadow: 0 0 0 3px rgba(0,35,149,0.08) !important;
}
/* /Pages/Admin/AdminUsers.razor.rz.scp.css */
/* ── Admin Users Page ─────────────────────────────────────────────────────── */

:deep(.mud-table)[b-u1su42ji4l] {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid var(--border) !important;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
:deep(.mud-table-head .mud-table-cell)[b-u1su42ji4l] {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--text-3) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--bg) !important;
}
:deep(.mud-table-row:hover)[b-u1su42ji4l] { background: var(--bg) !important; }

:deep(.mud-paper)[b-u1su42ji4l] {
    border-radius: 16px !important;
    border: 1px solid var(--border) !important;
    transition: box-shadow 0.22s;
}
:deep(.mud-paper:hover)[b-u1su42ji4l] { box-shadow: var(--shadow-md) !important; }

:deep(.mud-input-root)[b-u1su42ji4l] {
    border-radius: 10px !important;
    transition: box-shadow 0.2s;
}
:deep(.mud-input-root:focus-within)[b-u1su42ji4l] {
    box-shadow: 0 0 0 3px rgba(0,35,149,0.08) !important;
}
/* /Pages/ForgotPassword.razor.rz.scp.css */
/* ── Page container ──────────────────────────────────────────────────────── */
.fp-container[b-y9135d6jrz] {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

/* ── Left promo panel ────────────────────────────────────────────────────── */
.fp-promo[b-y9135d6jrz] {
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.fp-promo-icon[b-y9135d6jrz] {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.fp-promo-title[b-y9135d6jrz] {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 0.75rem;
}

.fp-promo-sub[b-y9135d6jrz] {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* ── Step indicators ─────────────────────────────────────────────────────── */
.fp-steps[b-y9135d6jrz] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    max-width: 260px;
    margin: 0 auto;
}

.fp-step[b-y9135d6jrz] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-3);
    transition: color 0.3s;
}

.fp-step-done[b-y9135d6jrz] {
    color: var(--text-1);
    font-weight: 600;
}

.fp-step-dot[b-y9135d6jrz] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-3);
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.fp-step-done .fp-step-dot[b-y9135d6jrz] {
    background: var(--brand-blue);
    color: white;
}

/* ── Card ────────────────────────────────────────────────────────────────── */
.fp-card[b-y9135d6jrz] {
    background: white;
    padding: 2.5rem 2.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.05s both;
}

.fp-card-icon[b-y9135d6jrz] {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.fp-card-title[b-y9135d6jrz] {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.fp-card-sub[b-y9135d6jrz] {
    color: var(--text-2);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

/* ── Input group ─────────────────────────────────────────────────────────── */
.fp-input-group .input-group-text[b-y9135d6jrz] {
    background: var(--bg);
    border-right: none;
    color: var(--text-3);
}

.fp-input-group .form-control[b-y9135d6jrz] {
    border-left: none;
}

.fp-input-group .form-control:focus[b-y9135d6jrz] {
    box-shadow: none;
    border-color: var(--border-strong);
}

.fp-eye-btn[b-y9135d6jrz] {
    background: var(--bg);
    border-left: none;
    cursor: pointer;
    color: var(--text-3);
    transition: color 0.15s;
}

.fp-eye-btn:hover[b-y9135d6jrz] {
    color: var(--brand-blue);
}

/* ── Messages ────────────────────────────────────────────────────────────── */
.fp-error-msg[b-y9135d6jrz] {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 5px;
    font-weight: 500;
}

.fp-hint-msg[b-y9135d6jrz] {
    font-size: 0.78rem;
    color: #f59e0b;
    margin-top: 5px;
}

/* ── Submit button ───────────────────────────────────────────────────────── */
.fp-submit-btn[b-y9135d6jrz] {
    border-radius: 10px;
    font-size: 0.95rem;
}

/* ── Back link ───────────────────────────────────────────────────────────── */
.fp-back-link[b-y9135d6jrz] {
    text-align: center;
    margin-top: 1.25rem;
}

.fp-back-link a[b-y9135d6jrz] {
    color: var(--text-2);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}

.fp-back-link a:hover[b-y9135d6jrz] {
    color: var(--brand-navy);
}

.fp-link-btn[b-y9135d6jrz] {
    color: var(--text-2);
    font-size: 0.875rem;
    text-decoration: none;
    padding: 0;
}

.fp-link-btn:hover[b-y9135d6jrz] {
    color: var(--brand-navy);
    text-decoration: none;
}

/* ── Password strength ───────────────────────────────────────────────────── */
.fp-strength-bar[b-y9135d6jrz] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fp-strength-track[b-y9135d6jrz] {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.fp-strength-fill[b-y9135d6jrz] {
    height: 100%;
    border-radius: 10px;
    transition: width 0.4s ease, background 0.4s;
}

.strength-weak[b-y9135d6jrz]   { background: #ef4444; }
.strength-fair[b-y9135d6jrz]   { background: #f59e0b; }
.strength-good[b-y9135d6jrz]   { background: #3b82f6; }
.strength-strong[b-y9135d6jrz] { background: #10b981; }
.strength-great[b-y9135d6jrz]  { background: #059669; }

.fp-strength-label[b-y9135d6jrz] {
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 48px;
    text-align: right;
}

.strength-label-weak[b-y9135d6jrz]   { color: #ef4444; }
.strength-label-fair[b-y9135d6jrz]   { color: #f59e0b; }
.strength-label-good[b-y9135d6jrz]   { color: #3b82f6; }
.strength-label-strong[b-y9135d6jrz] { color: #10b981; }
.strength-label-great[b-y9135d6jrz]  { color: #059669; }

/* ── Success state ───────────────────────────────────────────────────────── */
.fp-success[b-y9135d6jrz] {
    text-align: center;
    padding: 1rem 0;
}

.fp-success-icon[b-y9135d6jrz] {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
    animation: successBounce-b-y9135d6jrz 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes successBounce-b-y9135d6jrz {
    0%, 100% { transform: scale(1); }
    30%       { transform: scale(1.25); }
    60%       { transform: scale(0.95); }
}

.fp-success-title[b-y9135d6jrz] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 0.75rem;
}

.fp-success-sub[b-y9135d6jrz] {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

@media (max-width: 576px) {
    .fp-card[b-y9135d6jrz] {
        padding: 2rem 1.5rem;
    }

    .fp-container[b-y9135d6jrz] {
        margin: 40px auto;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* ── Hero ─────────────────────────────────────────────────────────────────── */
.home-hero[b-d3kh8hkmog] {
    background:
        linear-gradient(150deg, rgba(0,26,110,0.94) 0%, rgba(0,35,149,0.90) 50%, rgba(0,119,73,0.82) 100%),
        url('/uni-campus-placeholder.jpg') center/cover no-repeat;
    padding: 80px 32px;
    text-align: center;
    color: white;
    border-radius: 20px;
    margin-bottom: 52px;
    box-shadow: 0 16px 48px rgba(0,26,110,0.20), 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.home-hero[b-d3kh8hkmog]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-yellow), rgba(255,184,28,0.3), transparent);
}

.hero-title[b-d3kh8hkmog] {
    font-weight: 800;
    font-size: 2.75rem;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-subtitle[b-d3kh8hkmog] {
    font-size: 1.075rem;
    max-width: 680px;
    margin: 0 auto 36px;
    opacity: 0.82;
    font-weight: 400;
    line-height: 1.65;
}

.hero-actions[b-d3kh8hkmog] {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Feature Cards ────────────────────────────────────────────────────────── */
.feature-grid[b-d3kh8hkmog] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-bottom: 64px;
}

.feature-card[b-d3kh8hkmog] {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
    border: 1px solid var(--border);
}

.feature-card:hover[b-d3kh8hkmog] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper[b-d3kh8hkmog] {
    width: 52px;
    height: 52px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-blue);
    font-size: 1.4rem;
}

.feature-title[b-d3kh8hkmog] {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-1);
    letter-spacing: -0.01em;
}

.feature-text[b-d3kh8hkmog] {
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 0.9rem;
}

/* ── How It Works ─────────────────────────────────────────────────────────── */
.how-it-works[b-d3kh8hkmog] {
    text-align: center;
    padding: 64px 0;
}

.section-title[b-d3kh8hkmog] {
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 48px;
    font-size: 1.875rem;
    letter-spacing: -0.02em;
}

.step-grid[b-d3kh8hkmog] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.step-item[b-d3kh8hkmog] {
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.22s, box-shadow 0.22s;
}
.step-item:hover[b-d3kh8hkmog] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-number[b-d3kh8hkmog] {
    width: 56px;
    height: 56px;
    background: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item:nth-child(2) .step-number[b-d3kh8hkmog] { background: var(--brand-yellow); color: var(--brand-navy); }
.step-item:nth-child(3) .step-number[b-d3kh8hkmog] { background: var(--brand-green); }
.step-item:nth-child(4) .step-number[b-d3kh8hkmog] { background: var(--bg-alt); color: var(--brand-blue); }

.step-title[b-d3kh8hkmog] {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-1);
    font-size: 0.95rem;
}

.step-desc[b-d3kh8hkmog] {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ── Quick Links ──────────────────────────────────────────────────────────── */
.quick-links[b-d3kh8hkmog] {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.quick-link-btn[b-d3kh8hkmog] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: white;
    transition: all 0.18s;
}

.quick-link-btn:hover[b-d3kh8hkmog] {
    border-color: var(--brand-blue);
    background: rgba(0,35,149,0.04);
    color: var(--brand-navy);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hero-title[b-d3kh8hkmog]   { font-size: 2rem; }
    .home-hero[b-d3kh8hkmog]    { padding: 52px 20px; border-radius: 12px; }
    .hero-subtitle[b-d3kh8hkmog] { font-size: 1rem; }
}
/* /Pages/Institution/InstitutionApplications.razor.rz.scp.css */
/* ── Institution Applications ────────────────────────────────────────────── */

.app-stats-row[b-upn2dmiduq] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.app-stat-chip[b-upn2dmiduq] {
    --chip-color: var(--brand-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.app-stat-chip:hover[b-upn2dmiduq],
.app-stat-chip.active[b-upn2dmiduq] {
    border-color: var(--chip-color);
    background: color-mix(in srgb, var(--chip-color) 8%, white);
    transform: translateY(-1px);
}

.app-stat-label[b-upn2dmiduq] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-2);
}

.app-stat-count[b-upn2dmiduq] {
    background: var(--bg-alt);
    color: var(--text-1);
    font-weight: 700;
    font-size: 0.78rem;
    border-radius: 10px;
    padding: 1px 7px;
    min-width: 24px;
    text-align: center;
}

.filter-panel[b-upn2dmiduq] {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.applications-panel[b-upn2dmiduq] {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.admin-table[b-upn2dmiduq] {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead tr[b-upn2dmiduq] {
    background: var(--bg);
}

.admin-table th[b-upn2dmiduq] {
    padding: 12px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}

.admin-table td[b-upn2dmiduq] {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tbody tr:last-child td[b-upn2dmiduq] {
    border-bottom: none;
}

.admin-table tbody tr:hover[b-upn2dmiduq] {
    background: var(--bg);
}

.status-badge[b-upn2dmiduq] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-active[b-upn2dmiduq]   { background: rgba(0,119,73,0.10);   color: #005c38; }
.status-pending[b-upn2dmiduq]  { background: rgba(255,184,28,0.12); color: #7a5200; }
.status-suspended[b-upn2dmiduq] { background: rgba(220,38,38,0.08); color: #b91c1c; }
.status-review[b-upn2dmiduq]   { background: rgba(0,35,149,0.08);   color: var(--brand-blue); }
.status-received[b-upn2dmiduq] { background: rgba(124,58,237,0.08); color: #6d28d9; }
.status-withdrawn[b-upn2dmiduq] { background: var(--bg-alt); color: var(--text-2); }

/* Detail Drawer */
.app-detail-overlay[b-upn2dmiduq] {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,22,40,0.45);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    animation: fadeIn 0.2s ease both;
}

.app-detail-drawer[b-upn2dmiduq] {
    width: 480px;
    max-width: 95vw;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(10,22,40,0.12);
    animation: slideInLeft 0.3s cubic-bezier(0.22,1,0.36,1) both;
    transform-origin: right center;
}

.drawer-header[b-upn2dmiduq] {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.drawer-body[b-upn2dmiduq] {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.detail-section-title[b-upn2dmiduq] {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.detail-grid[b-upn2dmiduq] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-row[b-upn2dmiduq] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
}

.d-label[b-upn2dmiduq] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-2);
    min-width: 100px;
    flex-shrink: 0;
}

.d-value[b-upn2dmiduq] {
    font-size: 0.875rem;
    color: var(--text-1);
    text-align: right;
}

.motivation-text[b-upn2dmiduq] {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.6;
    white-space: pre-wrap;
}

.drawer-actions[b-upn2dmiduq] {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
/* /Pages/Institution/InstitutionCampusLife.razor.rz.scp.css */
/* ── Institution Campus Life ─────────────────────────────────────────────── */

.profile-card[b-62pou6uyot] {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
    transition: box-shadow 0.22s;
}

.profile-card:hover[b-62pou6uyot] {
    box-shadow: var(--shadow-md);
}

.profile-card-header[b-62pou6uyot] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.profile-card-body[b-62pou6uyot] {
    padding: 24px;
}

.nav-tabs[b-62pou6uyot] {
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-link[b-62pou6uyot] {
    font-weight: 600;
    color: var(--text-2);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 16px;
    transition: color 0.15s, border-color 0.15s;
}

.nav-tabs .nav-link.active[b-62pou6uyot] {
    color: var(--brand-navy);
    border-bottom-color: var(--brand-blue);
    background: transparent;
}

.nav-tabs .nav-link:hover:not(.active)[b-62pou6uyot] {
    color: var(--brand-navy);
    border-bottom-color: var(--border);
}
/* /Pages/Institution/InstitutionCourses.razor.rz.scp.css */
/* ── Institution Courses / Programmes ────────────────────────────────────── */

.filter-panel[b-f3g3l818dh] {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.courses-grid[b-f3g3l818dh] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.course-card[b-f3g3l818dh] {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.course-card:hover[b-f3g3l818dh] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.course-card-header[b-f3g3l818dh] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 20px 0;
}

.course-actions[b-f3g3l818dh] {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.course-name[b-f3g3l818dh] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-1);
    margin-bottom: 4px;
    line-height: 1.35;
}

.course-code[b-f3g3l818dh] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-description[b-f3g3l818dh] {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.6;
    margin: 12px 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-badges[b-f3g3l818dh] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 20px 16px;
}

.badge-faculty[b-f3g3l818dh] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e40af;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.badge-standalone[b-f3g3l818dh] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 3px 10px;
    border-radius: 20px;
}

.badge-info[b-f3g3l818dh] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-2);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.course-footer[b-f3g3l818dh] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    margin-top: auto;
}

.course-fee-block[b-f3g3l818dh] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.course-fee[b-f3g3l818dh] {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-navy);
}

.course-fee-note[b-f3g3l818dh] {
    font-size: 0.78rem;
    color: var(--text-2);
    line-height: 1.4;
}

.course-card-accent[b-f3g3l818dh] {
    height: 4px;
    width: 100%;
}

.course-card-body[b-f3g3l818dh] {
    padding: 20px;
    flex: 1;
}

.course-meta[b-f3g3l818dh] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.course-meta-tag[b-f3g3l818dh] {
    font-size: 0.75rem;
    color: var(--text-2);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Mode of learning checkboxes */
.mode-checkboxes[b-f3g3l818dh] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mode-checkboxes .form-check[b-f3g3l818dh] {
    margin-bottom: 0;
}

.empty-state[b-f3g3l818dh] {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.empty-icon[b-f3g3l818dh] {
    font-size: 3rem;
    color: var(--text-3);
}
/* /Pages/Institution/InstitutionDashboard.razor.rz.scp.css */
/* ── Institution Dashboard ────────────────────────────────────────────────── */

.stats-grid[b-13bt4l61qm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card[b-13bt4l61qm] {
    background: white;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.stat-card:hover[b-13bt4l61qm] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-label[b-13bt4l61qm] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.stat-value[b-13bt4l61qm] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-icon[b-13bt4l61qm] {
    font-size: 2rem;
    opacity: 0.25;
}

.dashboard-panel[b-13bt4l61qm] {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.22s;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.dashboard-panel:hover[b-13bt4l61qm] {
    box-shadow: var(--shadow-md);
}

.panel-header[b-13bt4l61qm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.panel-title[b-13bt4l61qm] {
    margin: 0;
    color: var(--brand-navy);
    font-weight: 700;
}

.status-breakdown[b-13bt4l61qm] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-row[b-13bt4l61qm] {
    display: grid;
    grid-template-columns: 120px 1fr 40px;
    align-items: center;
    gap: 12px;
}

.status-label[b-13bt4l61qm] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
}

.status-dot[b-13bt4l61qm] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-bar-wrap[b-13bt4l61qm] {
    height: 8px;
    background: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
}

.status-bar[b-13bt4l61qm] {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.22,1,0.36,1);
    min-width: 2px;
}

.status-count[b-13bt4l61qm] {
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
    color: var(--text-1);
}

.quick-actions-list[b-13bt4l61qm] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-action-item[b-13bt4l61qm] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-1);
    transition: background 0.15s, color 0.15s;
}

.quick-action-item:hover[b-13bt4l61qm] {
    background: var(--bg);
    color: var(--brand-navy);
}

.quick-action-item i:first-child[b-13bt4l61qm] {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.profile-summary-grid[b-13bt4l61qm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.profile-summary-item[b-13bt4l61qm] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ps-label[b-13bt4l61qm] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ps-value[b-13bt4l61qm] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-1);
}
/* /Pages/Institution/InstitutionFaculties.razor.rz.scp.css */
/* ── Institution Faculties ────────────────────────────────────────────────── */

.filter-panel[b-towzr03ebg] {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.faculties-grid[b-towzr03ebg] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.faculty-card[b-towzr03ebg] {
    background: white;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.faculty-card:hover[b-towzr03ebg] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faculty-card-header[b-towzr03ebg] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.faculty-name[b-towzr03ebg] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-1);
}

.faculty-code[b-towzr03ebg] {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.faculty-actions[b-towzr03ebg] {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.faculty-description[b-towzr03ebg] {
    font-size: 0.85rem;
    color: var(--text-2);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.faculty-meta[b-towzr03ebg] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.meta-item[b-towzr03ebg] {
    font-size: 0.78rem;
    color: var(--text-2);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 20px;
}

.faculty-footer[b-towzr03ebg] {
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.empty-state[b-towzr03ebg] {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.empty-icon[b-towzr03ebg] {
    font-size: 3rem;
    color: var(--text-3);
}
/* /Pages/Institution/InstitutionFundingPartners.razor.rz.scp.css */
/* ── Institution Funding Partners ────────────────────────────────────────── */

.profile-card[b-sob28zv27d] {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
    transition: box-shadow 0.22s;
}

.profile-card:hover[b-sob28zv27d] {
    box-shadow: var(--shadow-md);
}

.partner-card[b-sob28zv27d] {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.partner-card:hover[b-sob28zv27d] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partner-name[b-sob28zv27d] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-1);
    margin-bottom: 4px;
}

.partner-type[b-sob28zv27d] {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

.partner-meta[b-sob28zv27d] {
    font-size: 0.84rem;
    color: var(--text-2);
    line-height: 1.5;
}
/* /Pages/Institution/InstitutionProfile.razor.rz.scp.css */
/* ── Institution Profile ──────────────────────────────────────────────────── */

.profile-card[b-7dgrrgx7hq] {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
    transition: box-shadow 0.22s;
}

.profile-card:hover[b-7dgrrgx7hq] {
    box-shadow: var(--shadow-md);
}

.profile-card-header[b-7dgrrgx7hq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.profile-card-body[b-7dgrrgx7hq] {
    padding: 24px;
}

.nav-tabs[b-7dgrrgx7hq] {
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-link[b-7dgrrgx7hq] {
    font-weight: 600;
    color: var(--text-2);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 16px;
    transition: color 0.15s, border-color 0.15s;
}

.nav-tabs .nav-link.active[b-7dgrrgx7hq] {
    color: var(--brand-navy);
    border-bottom-color: var(--brand-blue);
    background: transparent;
}

.nav-tabs .nav-link:hover:not(.active)[b-7dgrrgx7hq] {
    color: var(--brand-navy);
    border-bottom-color: var(--border);
}

.accreditation-badge[b-7dgrrgx7hq] {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.accred-yes[b-7dgrrgx7hq] {
    background: #d1fae5;
    color: #065f46;
}

.accred-no[b-7dgrrgx7hq] {
    background: #fef3c7;
    color: #92400e;
}

.info-block[b-7dgrrgx7hq] {
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 12px 16px;
}

.info-label[b-7dgrrgx7hq] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.info-value[b-7dgrrgx7hq] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-1);
}
/* /Pages/Institution/InstitutionSignUp.razor.rz.scp.css */
/* ── Institution Sign Up ─────────────────────────────────────────────────── */

.institution-signup-container[b-67t8o233g5] {
    min-height: 100vh;
    padding: 40px 20px;
    background: var(--bg);
}

.signup-card[b-67t8o233g5] {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-width: 560px;
    margin: 0 auto;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.brand-mark[b-67t8o233g5] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-chip[b-67t8o233g5] {
    width: 36px;
    height: 36px;
    background: var(--brand-blue);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.brand-name[b-67t8o233g5] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.signup-title[b-67t8o233g5] {
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.signup-subtitle[b-67t8o233g5] {
    color: var(--text-2);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.benefits-section[b-67t8o233g5] {
    padding: 20px;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

.benefit-card[b-67t8o233g5] {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
    transition: transform 0.2s;
}

.benefit-card:hover[b-67t8o233g5] {
    transform: translateX(4px);
}

.benefit-icon[b-67t8o233g5] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-title[b-67t8o233g5] {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-1);
}

.benefit-text[b-67t8o233g5] {
    color: var(--text-2);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.info-notice[b-67t8o233g5] {
    background: rgba(0,35,149,0.05);
    border: 1px solid rgba(0,35,149,0.15);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-1);
    line-height: 1.5;
}
/* /Pages/SignIn.razor.rz.scp.css */
.signin-container[b-dgj0yvqhww] {
    max-width: 980px;
    margin: 72px auto;
    padding: 0 20px;
}

.signin-card[b-dgj0yvqhww] {
    background: white;
    padding: 52px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.signin-title[b-dgj0yvqhww] {
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.signin-subtitle[b-dgj0yvqhww] {
    color: var(--text-2);
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.promo-panel[b-dgj0yvqhww] {
    text-align: center;
    padding: 20px;
}

.promo-img[b-dgj0yvqhww] {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.social-auth[b-dgj0yvqhww] {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.social-icon-btn[b-dgj0yvqhww] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    transition: all 0.18s;
    text-decoration: none;
    background: white;
}

.social-icon-btn:hover[b-dgj0yvqhww] {
    background: var(--bg);
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: translateY(-1px);
}

.auth-divider[b-dgj0yvqhww] {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-3);
    margin: 24px 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.auth-divider[b-dgj0yvqhww]::before,
.auth-divider[b-dgj0yvqhww]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.auth-divider:not(:empty)[b-dgj0yvqhww]::before { margin-right: 1em; }
.auth-divider:not(:empty)[b-dgj0yvqhww]::after  { margin-left: 1em; }

@media (max-width: 768px) {
    .signin-container[b-dgj0yvqhww] { margin: 32px auto; }
    .signin-card[b-dgj0yvqhww] { padding: 28px 20px; border-radius: 16px; }
}
/* /Pages/Students/Account/StudentDocuments.razor.rz.scp.css */
/* ── Student Documents ───────────────────────────────────────────────────── */

.page-hero[b-6h5117uee5] {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 60%, #0057e7 100%);
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease both;
}

.page-hero[b-6h5117uee5]::before {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,28,0.18) 0%, transparent 70%);
    top: -60px; right: -40px;
    pointer-events: none;
    animation: heroOrb 9s ease-in-out infinite;
}

.page-hero-content[b-6h5117uee5] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero-title[b-6h5117uee5] {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle[b-6h5117uee5] {
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    margin: 0;
}

.card[b-6h5117uee5] {
    border-radius: 14px !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: box-shadow 0.22s !important;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.card:hover[b-6h5117uee5] {
    box-shadow: var(--shadow-md) !important;
}
/* /Pages/Students/Account/StudentProfile.razor.rz.scp.css */
/* Hero */
.page-hero[b-rcvtjlzdg1] {
    background: linear-gradient(rgba(0, 39, 149, 0.85), rgba(0, 119, 73, 0.85)), url('/uni-campus-placeholder.jpg') center/cover;
    color: var(--white);
    padding: 4rem 5% 4rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.page-hero-content[b-rcvtjlzdg1] {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title[b-rcvtjlzdg1] {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle[b-rcvtjlzdg1] {
    font-weight: 300;
    opacity: 0.9;
}

/* Dashboard layout */
.profile-dashboard[b-rcvtjlzdg1] {
    padding: 2rem 5% 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    max-width: 1400px;
    margin: -2rem auto 0 auto;
}

.dashboard-container[b-rcvtjlzdg1] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

/* Summary strip */
.profile-summary[b-rcvtjlzdg1] {
    margin-bottom: 1.5rem;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.summary-icon[b-rcvtjlzdg1] {
    font-size: 1.6rem;
    color: var(--blue);
}

.summary-label[b-rcvtjlzdg1] {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    color: #6b7280;
}

.summary-divider[b-rcvtjlzdg1] {
    height: 32px;
    margin: 0 0.75rem;
}

/* Sidebar */
.profile-sidebar[b-rcvtjlzdg1] {
    background: rgba(245, 245, 245, 0.95);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.sidebar-sticky[b-rcvtjlzdg1] {
    position: sticky;
    top: 100px;
}

.profile-header[b-rcvtjlzdg1] {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 35, 149, 0.2);
}

.profile-avatar[b-rcvtjlzdg1] {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #FFB81C, #002395);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-sidebar:hover .profile-avatar[b-rcvtjlzdg1] {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.4);
}

.profile-name[b-rcvtjlzdg1] {
    color: var(--blue);
}

.profile-id[b-rcvtjlzdg1] {
    color: #6b7280;
}

.profile-menu-header[b-rcvtjlzdg1] {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
}

/* Sidebar menu items */
.profile-menu-item[b-rcvtjlzdg1] {
    border-radius: 10px;
    margin-bottom: 0.15rem;
    padding-left: 0.4rem;
    position: relative;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

    .profile-menu-item[b-rcvtjlzdg1]::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 8px;
        width: 3px;
        border-radius: 999px;
        background: transparent;
        transition: background 0.2s ease;
    }

    .profile-menu-item.active[b-rcvtjlzdg1],
    .profile-menu-item:hover[b-rcvtjlzdg1] {
        background: linear-gradient(90deg, rgba(0, 35, 149, 0.12), rgba(0, 119, 73, 0.12));
        transform: translateX(2px);
    }

        .profile-menu-item.active[b-rcvtjlzdg1]::before {
            background: var(--yellow);
        }

.profile-menu-divider[b-rcvtjlzdg1] {
    margin: 0.5rem 0 0.75rem;
}

/* Main content */
.profile-content[b-rcvtjlzdg1] {
    background: rgba(245, 245, 245, 0.95);
    border-radius: 18px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

/* Sections */
.section-block[b-rcvtjlzdg1] {
    scroll-margin-top: 120px;
}

.section-header-row[b-rcvtjlzdg1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-chip[b-rcvtjlzdg1] {
    border-radius: 999px;
    min-width: 32px;
    justify-content: center;
    font-weight: 700;
}

.section-title[b-rcvtjlzdg1] {
    color: var(--blue);
    font-weight: 800;
    position: relative;
    padding-bottom: 10px;
    margin: 0.5rem 0 0.5rem;
}

    .section-title[b-rcvtjlzdg1]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--yellow);
        border-radius: 999px;
    }

.section-helper[b-rcvtjlzdg1] {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Subsections */
.subsection-title[b-rcvtjlzdg1] {
    margin: 1.8rem 0 1rem;
    color: var(--blue);
}

/* Form layout */
.form-grid[b-rcvtjlzdg1] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.form-group[b-rcvtjlzdg1] {
    margin-bottom: 0.75rem;
}

    .form-group.full-width[b-rcvtjlzdg1] {
        grid-column: 1 / -1;
    }

.form-row[b-rcvtjlzdg1] {
    display: flex;
    gap: 1rem;
}

.emergency-label[b-rcvtjlzdg1] {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 0.4rem;
}

/* Divider */
.section-divider[b-rcvtjlzdg1] {
    height: 1px;
    background: rgba(148, 163, 184, 0.4);
    margin: 2rem 0;
}

/* Inline upload form */
.upload-area-inline[b-rcvtjlzdg1] {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.upload-form-row[b-rcvtjlzdg1] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .upload-form-row[b-rcvtjlzdg1] {
        flex-direction: column;
    }
    .upload-form-row .form-group[b-rcvtjlzdg1] {
        width: 100% !important;
        min-width: unset !important;
    }
}

/* Upload & documents */
.upload-area[b-rcvtjlzdg1] {
    border: 2px dashed rgba(148, 163, 184, 0.7);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    margin: 1.5rem 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

    .upload-area:hover[b-rcvtjlzdg1] {
        border-color: var(--blue);
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
        transform: translateY(-1px);
    }

.upload-icon[b-rcvtjlzdg1] {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.upload-text[b-rcvtjlzdg1] {
    margin-bottom: 1rem;
}

.upload-caption[b-rcvtjlzdg1] {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.document-list[b-rcvtjlzdg1] {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.document-item[b-rcvtjlzdg1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
}

.document-info[b-rcvtjlzdg1] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.document-icon[b-rcvtjlzdg1] {
    width: 40px;
    height: 40px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.document-actions[b-rcvtjlzdg1] {
    display: flex;
    gap: 6px;
}

/* Payment */
.payment-card[b-rcvtjlzdg1] {
    padding: 1.4rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 4px solid var(--blue);
}

.payment-header[b-rcvtjlzdg1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.payment-type[b-rcvtjlzdg1] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-icon[b-rcvtjlzdg1] {
    font-size: 1.5rem;
    color: var(--blue);
}

.default-badge[b-rcvtjlzdg1] {
    background: var(--green);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.add-payment-btn[b-rcvtjlzdg1] {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
}

/* Form actions */
.form-actions[b-rcvtjlzdg1] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2.2rem;
}

/* Read-only field display */
.form-control-plaintext[b-rcvtjlzdg1] {
    padding: 0.375rem 0;
    font-size: 0.95rem;
    color: #1e293b;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.5);
    min-height: 2rem;
}

/* Payment default highlight */
.payment-card-default[b-rcvtjlzdg1] {
    border-left-color: var(--green);
    background: rgba(0, 119, 73, 0.04);
}

/* Qualification list */
.qual-list[b-rcvtjlzdg1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.qual-item[b-rcvtjlzdg1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 3px solid var(--blue);
    gap: 1rem;
}

.qual-info[b-rcvtjlzdg1] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.qual-actions[b-rcvtjlzdg1] {
    white-space: nowrap;
}

/* Address autocomplete */
.address-dropdown[b-rcvtjlzdg1] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    max-height: 240px;
    overflow-y: auto;
}

.address-suggestion[b-rcvtjlzdg1] {
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    transition: background 0.15s;
}

    .address-suggestion:hover[b-rcvtjlzdg1] {
        background: rgba(0, 39, 149, 0.07);
    }

/* Modal overlay */
.modal-overlay[b-rcvtjlzdg1] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-panel[b-rcvtjlzdg1] {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
    overflow: hidden;
}

.modal-panel.modal-sm[b-rcvtjlzdg1] {
    max-width: 420px;
}

.modal-header-row[b-rcvtjlzdg1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.modal-body-scroll[b-rcvtjlzdg1] {
    padding: 1.25rem 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer-row[b-rcvtjlzdg1] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .dashboard-container[b-rcvtjlzdg1] {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky[b-rcvtjlzdg1] {
        position: static;
    }

    .profile-dashboard[b-rcvtjlzdg1] {
        padding-top: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-grid[b-rcvtjlzdg1] {
        grid-template-columns: 1fr;
    }

    .form-row[b-rcvtjlzdg1] {
        flex-direction: column;
    }

    .profile-content[b-rcvtjlzdg1] {
        padding: 1.6rem 1.25rem 2rem;
    }

    .form-actions[b-rcvtjlzdg1] {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-summary[b-rcvtjlzdg1] {
        padding: 1rem 1.1rem;
    }

    .summary-divider[b-rcvtjlzdg1] {
        display: none;
    }
}

/* ── Profile avatar with upload overlay ── */
.profile-avatar-wrap[b-rcvtjlzdg1] {
    position: relative;
    display: inline-block;
    margin: 0 auto 1rem;
}

.profile-avatar-img[b-rcvtjlzdg1] {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 25px rgba(15,23,42,0.35);
}

.avatar-upload-btn[b-rcvtjlzdg1] {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(15,23,42,0.3);
    transition: background 0.2s;
}

    .avatar-upload-btn:hover[b-rcvtjlzdg1] {
        background: var(--green);
    }

/* ── Progress bar ── */
.profile-progress-bar-wrap[b-rcvtjlzdg1] {
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    padding: 1.1rem 5%;
    margin: 0;
    box-shadow: 0 2px 12px rgba(15,23,42,0.08);
}

.profile-progress-inner[b-rcvtjlzdg1] {
    max-width: 900px;
    margin: 0 auto;
}

.progress-label[b-rcvtjlzdg1] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.progress-pct[b-rcvtjlzdg1] {
    font-size: 0.9rem;
    color: var(--blue);
}

.progress-hint[b-rcvtjlzdg1] {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* ── APS Score ── */
.aps-banner[b-rcvtjlzdg1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0,39,149,0.08), rgba(0,119,73,0.08));
    border-radius: 12px;
    border: 1px solid rgba(0,39,149,0.15);
}

.aps-score-circle[b-rcvtjlzdg1] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.aps-live-banner[b-rcvtjlzdg1] {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background: rgba(0,119,73,0.08);
    border-radius: 10px;
    border: 1px solid rgba(0,119,73,0.2);
    font-size: 0.9rem;
}

.aps-score-pill[b-rcvtjlzdg1] {
    background: var(--green);
    color: #fff;
    border-radius: 20px;
    padding: 0.15rem 0.75rem;
    font-weight: 700;
    font-size: 1rem;
}

/* ── Subject rows ── */
.subject-row[b-rcvtjlzdg1] {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(148,163,184,0.25);
}

/* ── Achievement list ── */
.achievement-list[b-rcvtjlzdg1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.achievement-item[b-rcvtjlzdg1] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.95);
    border-left: 3px solid var(--yellow);
    gap: 1rem;
}

.achievement-info[b-rcvtjlzdg1] {
    flex: 1;
}

.achievement-actions[b-rcvtjlzdg1] {
    white-space: nowrap;
    padding-top: 0.1rem;
}

/* Achievement category badges */
.achievement-cat-badge[b-rcvtjlzdg1] {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Security blocks ── */
.security-block[b-rcvtjlzdg1] {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(148,163,184,0.2);
}

.badge-academic[b-rcvtjlzdg1]   { background: rgba(37,99,235,0.12);  color: #1d4ed8; }
.badge-sports[b-rcvtjlzdg1]     { background: rgba(5,150,105,0.12);   color: #047857; }
.badge-arts[b-rcvtjlzdg1]       { background: rgba(124,58,237,0.12);  color: #6d28d9; }
.badge-community[b-rcvtjlzdg1]  { background: rgba(245,158,11,0.12);  color: #b45309; }
.badge-leadership[b-rcvtjlzdg1] { background: rgba(239,68,68,0.12);   color: #b91c1c; }
.badge-other[b-rcvtjlzdg1]      { background: rgba(107,114,128,0.12); color: #374151; }
/* /Pages/Students/Account/StudentSignUp.razor.rz.scp.css */
.signup-container[b-iebcysv6it] {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.signup-card[b-iebcysv6it] {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.signup-title[b-iebcysv6it] {
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

.signup-subtitle[b-iebcysv6it] {
    color: #666;
    margin-bottom: 32px;
}

.benefits-column[b-iebcysv6it] {
    padding: 20px;
}

.benefit-item[b-iebcysv6it] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s;
}

.benefit-item:hover[b-iebcysv6it] {
    transform: translateX(5px);
}

.benefit-icon[b-iebcysv6it] {
    font-size: 1.5rem;
    color: var(--blue);
}

.benefit-title[b-iebcysv6it] {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.benefit-text[b-iebcysv6it] {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.promo-image-card[b-iebcysv6it] {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 32px;
    text-align: center;
}

.promo-image[b-iebcysv6it] {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.promo-content[b-iebcysv6it] {
    padding: 24px;
}

.social-login[b-iebcysv6it] {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.social-btn[b-iebcysv6it] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #555;
    transition: all 0.2s;
}

.social-btn:hover[b-iebcysv6it] {
    background: #f5f5f5;
    color: var(--blue);
    border-color: var(--blue);
}

.divider-text[b-iebcysv6it] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999;
    margin: 24px 0;
}

.divider-text[b-iebcysv6it]::before,
.divider-text[b-iebcysv6it]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider-text:not(:empty)[b-iebcysv6it]::before {
    margin-right: .5em;
}

.divider-text:not(:empty)[b-iebcysv6it]::after {
    margin-left: .5em;
}

@media (max-width: 768px) {
    .signup-card[b-iebcysv6it] { padding: 24px; }
}
/* /Pages/Students/Applications/Apply.razor.rz.scp.css */
/* ── Apply Page ───────────────────────────────────────────────────────────── */

.apply-page[b-rxw116z62g] {
    padding: 24px 16px;
    min-height: 100vh;
    background: var(--bg);
}

.apply-container[b-rxw116z62g] {
    max-width: 700px;
    margin: 0 auto;
}

.back-link[b-rxw116z62g] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2) !important;
    transition: color 0.15s;
}

.back-link:hover[b-rxw116z62g] {
    color: var(--brand-navy) !important;
}

.apply-card[b-rxw116z62g] {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.apply-header[b-rxw116z62g] {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.apply-body[b-rxw116z62g] {
    padding: 24px 32px;
}

.apply-footer[b-rxw116z62g] {
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: var(--bg);
}

.success-state[b-rxw116z62g] {
    padding: 48px 32px;
    text-align: center;
    animation: scaleIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

.success-icon[b-rxw116z62g] {
    font-size: 4rem;
    line-height: 1;
}
/* /Pages/Students/Applications/StudentApplications.razor.rz.scp.css */
/* Applications Header */
.apps-header[b-wap7rqv3qj] {
    background: linear-gradient(rgba(0, 35, 149, 0.85), rgba(0, 119, 73, 0.85)),
                url('/uni-campus-placeholder.jpg') center/cover no-repeat;
    padding: 60px 24px;
    text-align: center;
    color: white;
    border-radius: 16px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease both;
}

.apps-header[b-wap7rqv3qj]::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,28,0.18) 0%, transparent 70%);
    top: -80px; right: -50px;
    pointer-events: none;
    animation: heroOrb 9s ease-in-out infinite;
}

.header-title[b-wap7rqv3qj] {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 8px;
}

.header-subtitle[b-wap7rqv3qj] {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters */
.filter-panel[b-wap7rqv3qj] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 32px;
    border: 1px solid #eee;
}

.filter-grid[b-wap7rqv3qj] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 16px;
    align-items: flex-end;
}

@media (max-width: 992px) {
    .filter-grid[b-wap7rqv3qj] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .filter-grid[b-wap7rqv3qj] {
        grid-template-columns: 1fr;
    }
}

.filter-group[b-wap7rqv3qj] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label[b-wap7rqv3qj] {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

/* Table Design */
.apps-table-container[b-wap7rqv3qj] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.apps-table[b-wap7rqv3qj] {
    width: 100%;
    border-collapse: collapse;
}

.apps-table th[b-wap7rqv3qj] {
    background: #f8f9fa;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
}

.apps-table td[b-wap7rqv3qj] {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.app-ref[b-wap7rqv3qj] {
    font-weight: 700;
    color: var(--blue);
    display: block;
}

.app-subtext[b-wap7rqv3qj] {
    font-size: 0.8rem;
    color: #888;
}

.institution-info[b-wap7rqv3qj] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inst-logo[b-wap7rqv3qj] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    background: #f5f5f5;
    padding: 4px;
}

.status-badge[b-wap7rqv3qj] {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-submitted[b-wap7rqv3qj] { background: #e3f2fd; color: #1976d2; }
.status-received[b-wap7rqv3qj] { background: #f3e8ff; color: #6b21a8; }
.status-underreview[b-wap7rqv3qj] { background: #fff3e0; color: #ef6c00; }
.status-accepted[b-wap7rqv3qj] { background: #e8f5e9; color: #2e7d32; }
.status-declined[b-wap7rqv3qj] { background: #ffebee; color: #c62828; }
.status-withdrawn[b-wap7rqv3qj] { background: #f5f5f5; color: #616161; }

/* Mobile Card View */
.app-card[b-wap7rqv3qj] {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.card-header[b-wap7rqv3qj] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-body[b-wap7rqv3qj] {
    margin-bottom: 16px;
}

.card-footer[b-wap7rqv3qj] {
    display: flex;
    gap: 8px;
    border-top: 1px solid #eee;
    padding-top: 16px;
}
/* /Pages/Students/Applications/ViewStudentApplication.razor.rz.scp.css */
/* ── Hero ────────────────────────────────────────────────────────────────── */
.va-hero[b-lgwz7mnh2u] {
    background: linear-gradient(135deg, rgba(0,35,149,0.92) 0%, rgba(0,119,73,0.88) 100%),
                url('/uni-campus-placeholder.jpg') center/cover no-repeat;
    color: white;
    padding: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease both;
}

.va-hero[b-lgwz7mnh2u]::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,28,0.18) 0%, transparent 70%);
    top: -80px; right: -40px;
    pointer-events: none;
    animation: heroOrb 9s ease-in-out infinite;
}

.va-title[b-lgwz7mnh2u] {
    font-size: 1.6rem;
    font-weight: 800;
}

.va-subtitle[b-lgwz7mnh2u] {
    opacity: 0.9;
    font-size: 1rem;
}

.inst-logo-lg[b-lgwz7mnh2u] {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: contain;
    background: white;
    padding: 6px;
}

.inst-logo-lg-placeholder[b-lgwz7mnh2u] {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.va-meta-pill[b-lgwz7mnh2u] {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.82rem;
}

/* ── Body layout ─────────────────────────────────────────────────────────── */
.va-body[b-lgwz7mnh2u] {
    padding: 2rem 1rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.va-layout[b-lgwz7mnh2u] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .va-layout[b-lgwz7mnh2u] {
        grid-template-columns: 1fr;
    }
    .va-sidebar[b-lgwz7mnh2u] {
        order: -1;
    }
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.va-card[b-lgwz7mnh2u] {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #e8edf2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.25rem;
}

.va-card-header[b-lgwz7mnh2u] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid #f0f4f8;
}

.va-card-icon[b-lgwz7mnh2u] {
    font-size: 1.1rem;
    color: var(--blue, #002395);
    background: rgba(0,35,149,0.08);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.va-card-title[b-lgwz7mnh2u] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

/* ── Field grid ──────────────────────────────────────────────────────────── */
.va-grid[b-lgwz7mnh2u] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 640px) {
    .va-grid[b-lgwz7mnh2u] {
        grid-template-columns: 1fr;
    }
}

.va-field[b-lgwz7mnh2u] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.va-field label[b-lgwz7mnh2u] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.va-field span[b-lgwz7mnh2u], .va-field p[b-lgwz7mnh2u] {
    font-size: 0.9rem;
    color: #1e293b;
}

.va-field.full-width[b-lgwz7mnh2u] {
    grid-column: 1 / -1;
}

.va-description label[b-lgwz7mnh2u] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    display: block;
}

.va-motivation[b-lgwz7mnh2u] {
    white-space: pre-line;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #334155;
    background: #f8fafc;
    border-left: 3px solid var(--blue, #002395);
    padding: 0.75rem 1rem;
    border-radius: 0 8px 8px 0;
}

/* ── Status pills ────────────────────────────────────────────────────────── */
.status-pill[b-lgwz7mnh2u] {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pill-sm[b-lgwz7mnh2u] {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-submitted[b-lgwz7mnh2u]  { background: #dbeafe; color: #1d4ed8; }
.status-received[b-lgwz7mnh2u]   { background: #f3e8ff; color: #6b21a8; }
.status-review[b-lgwz7mnh2u]     { background: #fff3e0; color: #ef6c00; }
.status-accepted[b-lgwz7mnh2u]   { background: #d1fae5; color: #065f46; }
.status-declined[b-lgwz7mnh2u]   { background: #fee2e2; color: #991b1b; }
.status-withdrawn[b-lgwz7mnh2u]  { background: #f1f5f9; color: #475569; }

/* ── Decision banner ─────────────────────────────────────────────────────── */
.decision-banner[b-lgwz7mnh2u] {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.decision-accepted[b-lgwz7mnh2u] {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.decision-declined[b-lgwz7mnh2u] {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.decision-icon[b-lgwz7mnh2u] {
    font-size: 2rem;
    flex-shrink: 0;
}

/* ── Avatar ──────────────────────────────────────────────────────────────── */
.va-avatar-img[b-lgwz7mnh2u] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.va-avatar-placeholder[b-lgwz7mnh2u] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #002395, #007749);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── Subjects table ──────────────────────────────────────────────────────── */
.aps-badge[b-lgwz7mnh2u] {
    background: rgba(0,35,149,0.1);
    color: #002395;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
}

.va-subjects-table[b-lgwz7mnh2u] {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8edf2;
}

.va-subjects-header[b-lgwz7mnh2u] {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    padding: 8px 12px;
    background: #f8fafc;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.4px;
}

.va-subject-row[b-lgwz7mnh2u] {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    padding: 9px 12px;
    font-size: 0.875rem;
    border-top: 1px solid #f0f4f8;
    transition: background 0.1s;
}

.va-subject-row:hover[b-lgwz7mnh2u] {
    background: #f8fafc;
}

.aps-pts[b-lgwz7mnh2u] {
    font-weight: 700;
    font-size: 0.875rem;
}

/* ── Qualifications / Achievements ──────────────────────────────────────── */
.va-qual-list[b-lgwz7mnh2u] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.va-qual-item[b-lgwz7mnh2u] {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #e8edf2;
}

.badge-completed[b-lgwz7mnh2u] {
    background: #d1fae5;
    color: #065f46;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.badge-progress[b-lgwz7mnh2u] {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

/* Achievement tags */
.achievement-tag[b-lgwz7mnh2u] {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tag-academic[b-lgwz7mnh2u]   { background: #dbeafe; color: #1e40af; }
.tag-sports[b-lgwz7mnh2u]     { background: #d1fae5; color: #065f46; }
.tag-arts[b-lgwz7mnh2u]       { background: #fce7f3; color: #9d174d; }
.tag-leadership[b-lgwz7mnh2u] { background: #ede9fe; color: #5b21b6; }
.tag-community[b-lgwz7mnh2u]  { background: #ffedd5; color: #9a3412; }
.tag-other[b-lgwz7mnh2u]      { background: #f1f5f9; color: #475569; }

/* ── Documents ───────────────────────────────────────────────────────────── */
.va-empty-docs[b-lgwz7mnh2u] {
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
    font-size: 2rem;
}

.va-empty-docs p[b-lgwz7mnh2u] {
    font-size: 0.9rem;
}

.va-doc-list[b-lgwz7mnh2u] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.va-doc-item[b-lgwz7mnh2u] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e8edf2;
}

.va-doc-icon[b-lgwz7mnh2u] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.doc-icon-pdf[b-lgwz7mnh2u] { background: #fee2e2; color: #dc2626; }
.doc-icon-img[b-lgwz7mnh2u] { background: #dbeafe; color: #2563eb; }

.va-doc-info[b-lgwz7mnh2u] {
    flex: 1;
    min-width: 0;
}

.va-doc-info .fw-semibold[b-lgwz7mnh2u] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Timeline ────────────────────────────────────────────────────────────── */
.va-timeline[b-lgwz7mnh2u] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.va-step[b-lgwz7mnh2u] {
    display: flex;
    gap: 12px;
    position: relative;
    padding-bottom: 1.25rem;
}

.va-step:last-child[b-lgwz7mnh2u] {
    padding-bottom: 0;
}

.va-step:not(:last-child)[b-lgwz7mnh2u]::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.va-step.step-done[b-lgwz7mnh2u]::before,
.va-step.step-active[b-lgwz7mnh2u]::before {
    background: #002395;
}

.va-step-dot[b-lgwz7mnh2u] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.step-done .va-step-dot[b-lgwz7mnh2u]    { background: #002395; color: white; }
.step-active .va-step-dot[b-lgwz7mnh2u]  { background: #007749; color: white; box-shadow: 0 0 0 4px rgba(0,119,73,0.15); }
.step-pending .va-step-dot[b-lgwz7mnh2u] { background: #f1f5f9; color: #94a3b8; border: 2px solid #e2e8f0; }
.step-withdrawn .va-step-dot[b-lgwz7mnh2u] { background: #f59e0b; color: white; }

.va-step-body[b-lgwz7mnh2u] {
    padding-top: 5px;
    min-width: 0;
}

.va-step-label[b-lgwz7mnh2u] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

.step-pending .va-step-label[b-lgwz7mnh2u] { color: #94a3b8; }

.va-step-date[b-lgwz7mnh2u] {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

/* ── Sidebar info rows ───────────────────────────────────────────────────── */
.va-info-list[b-lgwz7mnh2u] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.va-info-row[b-lgwz7mnh2u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.875rem;
}

.va-info-row:last-child[b-lgwz7mnh2u] {
    border-bottom: none;
}

.va-info-label[b-lgwz7mnh2u] { color: #64748b; }
.va-info-value[b-lgwz7mnh2u] { font-weight: 600; color: #1e293b; }
/* /Pages/Students/University/View-faculties.razor.rz.scp.css */
/* ── View Faculties Page ──────────────────────────────────────────────────── */

/* Hero is shared .skida-hero */

.fac-filter-panel[b-2yphvjxg7k] {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #DDE3F0;
    box-shadow: 0 2px 12px rgba(0,35,149,0.07);
    padding: 20px 24px;
    margin-bottom: 24px;
    animation: fadeInUp 0.45s cubic-bezier(0.22,1,0.36,1) both;
}

.fac-stats-panel[b-2yphvjxg7k] {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #DDE3F0;
    box-shadow: 0 2px 12px rgba(0,35,149,0.07);
    padding: 20px 24px;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s 0.05s cubic-bezier(0.22,1,0.36,1) both;
}

.fac-stat-mini[b-2yphvjxg7k] {
    background: #F5F7FC;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fac-stat-mini:hover[b-2yphvjxg7k] {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,35,149,0.10);
    background: #fff;
}

/* Faculty cards */
:deep(.mud-card)[b-2yphvjxg7k] {
    border-radius: 16px !important;
    border: 1px solid #DDE3F0 !important;
    box-shadow: 0 2px 12px rgba(0,35,149,0.07) !important;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s !important;
}

:deep(.mud-card:hover)[b-2yphvjxg7k] {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 36px rgba(0,35,149,0.14) !important;
}
/* /Pages/Students/University/View-faculty-details.razor.rz.scp.css */
/* ── View Faculty Details ────────────────────────────────────────────────── */

.skida-hero[b-rghs8nhbiv] {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 60%, #0057e7 100%);
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.skida-hero[b-rghs8nhbiv]::before {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,28,0.18) 0%, transparent 70%);
    top: -60px; right: -40px;
    pointer-events: none;
    animation: heroOrb 9s ease-in-out infinite;
}

:deep(.mud-paper)[b-rghs8nhbiv] {
    border-radius: 14px !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: box-shadow 0.22s !important;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

:deep(.mud-paper:hover)[b-rghs8nhbiv] {
    box-shadow: var(--shadow-md) !important;
}
/* /Pages/Students/University/View-faculty-programs.razor.rz.scp.css */
/* ── View Faculty Programs ───────────────────────────────────────────────── */

.skida-hero[b-sjmufxmbzd] {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 60%, #0057e7 100%);
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.skida-hero[b-sjmufxmbzd]::before {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,28,0.18) 0%, transparent 70%);
    top: -60px; right: -40px;
    pointer-events: none;
    animation: heroOrb 9s ease-in-out infinite;
}

:deep(.mud-paper)[b-sjmufxmbzd] {
    border-radius: 14px !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: box-shadow 0.22s !important;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

:deep(.mud-paper:hover)[b-sjmufxmbzd] {
    box-shadow: var(--shadow-md) !important;
}

:deep(.mud-card)[b-sjmufxmbzd] {
    border-radius: 14px !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s !important;
    animation: scaleIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

:deep(.mud-card:hover)[b-sjmufxmbzd] {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-lg) !important;
}
/* /Pages/Students/University/View-institution.razor.rz.scp.css */
/* ── View Institution Detail Page ─────────────────────────────────────────── */

/* Premium hero for the institution detail */
.inst-detail-hero[b-q4no4v6wq4] {
    background: linear-gradient(150deg, rgba(0,26,110,0.95) 0%, rgba(0,35,149,0.90) 55%, rgba(0,119,73,0.82) 100%),
                url('/uni-campus-placeholder.jpg') center/cover;
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease both;
}

.inst-detail-hero[b-q4no4v6wq4]::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFB81C, transparent);
}

/* Main card */
:deep(.mud-card)[b-q4no4v6wq4] {
    border-radius: 16px !important;
    border: 1px solid #DDE3F0;
    box-shadow: 0 2px 12px rgba(0,35,149,0.07) !important;
    transition: box-shadow 0.25s;
}

:deep(.mud-card:hover)[b-q4no4v6wq4] {
    box-shadow: 0 8px 28px rgba(0,35,149,0.12) !important;
}

/* Side panel */
:deep(.mud-paper)[b-q4no4v6wq4] {
    border-radius: 16px;
}

.inst-info-card[b-q4no4v6wq4] {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #DDE3F0;
    box-shadow: 0 2px 12px rgba(0,35,149,0.07);
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.inst-info-card:hover[b-q4no4v6wq4] {
    box-shadow: 0 8px 28px rgba(0,35,149,0.12);
    transform: translateY(-2px);
}
/* /Pages/Students/University/View-institutions.razor.rz.scp.css */
/* ── View Institutions Page ───────────────────────────────────────────────── */

.inst-search-wrap[b-tiokfl8obm] {
    animation: fadeInUp 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

.inst-grid[b-tiokfl8obm] {
    animation: fadeIn 0.5s 0.1s ease both;
}

/* University card hover lift */
:deep(.skida-card)[b-tiokfl8obm] {
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s !important;
    border-radius: 16px !important;
    border: 1px solid #DDE3F0 !important;
}

:deep(.skida-card:hover)[b-tiokfl8obm] {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(0,35,149,0.14) !important;
}

:deep(.skida-card .mud-card-media)[b-tiokfl8obm] {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
/* /Pages/Students/University/View-program-details.razor.rz.scp.css */
/* ── View Program Details ────────────────────────────────────────────────── */

.skida-hero[b-bul9r6ylm4] {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 60%, #0057e7 100%);
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.skida-hero[b-bul9r6ylm4]::before {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,28,0.18) 0%, transparent 70%);
    top: -60px; right: -40px;
    pointer-events: none;
    animation: heroOrb 9s ease-in-out infinite;
}

:deep(.mud-paper)[b-bul9r6ylm4] {
    border-radius: 14px !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: box-shadow 0.22s !important;
    animation: fadeInUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

:deep(.mud-paper:hover)[b-bul9r6ylm4] {
    box-shadow: var(--shadow-md) !important;
}
