/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.page[b-b1d64uvrnj] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-b1d64uvrnj] {
    flex: 1;
}

.sidebar[b-b1d64uvrnj] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-b1d64uvrnj] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-b1d64uvrnj]  a, .top-row[b-b1d64uvrnj]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-b1d64uvrnj]  a:hover, .top-row[b-b1d64uvrnj]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-b1d64uvrnj]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-b1d64uvrnj] {
        justify-content: space-between;
    }

    .top-row[b-b1d64uvrnj]  a, .top-row[b-b1d64uvrnj]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-b1d64uvrnj] {
        flex-direction: row;
    }

    .sidebar[b-b1d64uvrnj] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-b1d64uvrnj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-b1d64uvrnj]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-b1d64uvrnj], article[b-b1d64uvrnj] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Admin Layout - Modern Clean Design */

.admin-layout[b-b1d64uvrnj] {
    display: flex;
    min-height: 100vh;
    background-color: #f5f7fa;
}

/* Sidebar */
.admin-sidebar[b-b1d64uvrnj] {
    width: 260px;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Main Content Area */
.admin-main[b-b1d64uvrnj] {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.admin-header[b-b1d64uvrnj] {
    background: #ffffff;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header__left[b-b1d64uvrnj] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.admin-header__toggle[b-b1d64uvrnj] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
    padding: 0.5rem;
    transition: color 0.3s;
}

.admin-header__toggle:hover[b-b1d64uvrnj] {
    color: #3498db;
}

.admin-header__title[b-b1d64uvrnj] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.admin-header__right[b-b1d64uvrnj] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-header__user[b-b1d64uvrnj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s;
}

.admin-header__user:hover[b-b1d64uvrnj] {
    background: #e9ecef;
}

.admin-header__user-icon[b-b1d64uvrnj] {
    font-size: 1.5rem;
}

.admin-header__user-name[b-b1d64uvrnj] {
    font-weight: 500;
    color: #2c3e50;
}

/* Content Area */
.admin-content[b-b1d64uvrnj] {
    flex: 1;
    padding: 2rem;
}

.admin-article[b-b1d64uvrnj] {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: calc(100vh - 150px);
}

/* Error UI */
#blazor-error-ui[b-b1d64uvrnj] {
    background: #fee;
    border-top: 2px solid #e74c3c;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
    color: #c0392b;
    font-weight: 500;
}

#blazor-error-ui .dismiss[b-b1d64uvrnj] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

#blazor-error-ui a.reload[b-b1d64uvrnj] {
    color: #e74c3c;
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-sidebar[b-b1d64uvrnj] {
        transform: translateX(-100%);
    }

    .admin-sidebar.active[b-b1d64uvrnj] {
        transform: translateX(0);
    }

    .admin-main[b-b1d64uvrnj] {
        margin-left: 0;
    }

    .admin-header[b-b1d64uvrnj] {
        padding: 0 1rem;
    }

    .admin-header__toggle[b-b1d64uvrnj] {
        display: block;
    }

    .admin-content[b-b1d64uvrnj] {
        padding: 1rem;
    }

    .admin-article[b-b1d64uvrnj] {
        padding: 1rem;
    }

    .admin-header__user-name[b-b1d64uvrnj] {
        display: none;
    }
}

@media (max-width: 480px) {
    .admin-header__title[b-b1d64uvrnj] {
        font-size: 1.2rem;
    }
}

/* Icon Menu */
.icon-menu[b-b1d64uvrnj]::before {
    content: "?";
    font-size: 1.5rem;
}
/* /Components/Layout/AdminNavMenu.razor.rz.scp.css */
/* Admin Nav Container */
.admin-nav[b-dn1lkwpr2p] {
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.admin-nav__header[b-dn1lkwpr2p] {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 0.75rem;
}

.admin-nav__header .admin-nav__icon[b-dn1lkwpr2p] {
    font-size: 1.5rem;
}

.admin-nav__title[b-dn1lkwpr2p] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Nav */
.admin-nav__nav[b-dn1lkwpr2p] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 0;
}

/* Scrollbar Styling */
.admin-nav__nav[b-dn1lkwpr2p]::-webkit-scrollbar {
    width: 6px;
}

.admin-nav__nav[b-dn1lkwpr2p]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.admin-nav__nav[b-dn1lkwpr2p]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.admin-nav__nav[b-dn1lkwpr2p]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Section */
.admin-nav__section[b-dn1lkwpr2p] {
    margin-bottom: 2rem;
}

.admin-nav__section-title[b-dn1lkwpr2p] {
    padding: 0 1.5rem;
    margin: 0 0 0.75rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

/* Nav Items */
.admin-nav__item[b-dn1lkwpr2p] {
    margin: 0.25rem 0;
}

/* NavLink Styling - Force horizontal layout */
.admin-nav__link[b-dn1lkwpr2p],
.admin-nav__link a[b-dn1lkwpr2p] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
    padding: 0.875rem 1.5rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
}

.admin-nav__link[b-dn1lkwpr2p]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #3498db;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.admin-nav__link:hover[b-dn1lkwpr2p] {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

.admin-nav__link.active[b-dn1lkwpr2p] {
    background: rgba(52, 152, 219, 0.2) !important;
    color: #ffffff !important;
    font-weight: 600;
}

.admin-nav__link.active[b-dn1lkwpr2p]::before {
    transform: scaleY(1);
}

/* Icon Container */
.admin-nav__icon[b-dn1lkwpr2p] {
    font-size: 1.25rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0 !important;
}

.admin-nav__icon .icon[b-dn1lkwpr2p] {
    display: block !important;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.admin-nav__link:hover .admin-nav__icon .icon[b-dn1lkwpr2p],
.admin-nav__link.active .admin-nav__icon .icon[b-dn1lkwpr2p] {
    opacity: 1;
}

/* Text Label */
.admin-nav__text[b-dn1lkwpr2p] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block !important;
    line-height: 1.5;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Icon definitions */
.icon-target[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-target.svg');
}

.icon-users[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-users.svg');
}

.icon-award[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-award.svg');
}

.icon-file[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-file.svg');
}

.icon-education[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-education.svg');
}

.icon-video[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-video.svg');
}

.icon-article[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-article.svg');
}

.icon-teacher[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-teacher.svg');
}

.icon-settings[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-settings.svg');
}

.icon-pazzle[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-pazzle.svg');
}

.icon-log-out[b-dn1lkwpr2p] {
    background-image: url('/assets/images/icons/ico-logout-red.svg');
}

.admin-nav__link--logout .icon-log-out[b-dn1lkwpr2p] {
    filter: none;
    opacity: 1;
}

/* Logout Button */
.admin-nav__link--logout[b-dn1lkwpr2p] {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 1rem;
}

.admin-nav__link--logout:hover[b-dn1lkwpr2p] {
    background: rgba(231, 76, 60, 0.2) !important;
    color: #e74c3c !important;
}

.admin-nav__link--logout[b-dn1lkwpr2p]::before {
    background: #e74c3c;
}

/* Footer */
.admin-nav__footer[b-dn1lkwpr2p] {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.admin-nav__footer-text[b-dn1lkwpr2p] {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-nav__header[b-dn1lkwpr2p] {
        padding: 1rem;
    }

    .admin-nav__link[b-dn1lkwpr2p] {
        padding: 0.75rem 1rem !important;
        gap: 0.875rem !important;
    }

    .admin-nav__section-title[b-dn1lkwpr2p] {
        padding: 0 1rem;
    }

    .admin-nav__text[b-dn1lkwpr2p] {
        font-size: 0.95rem;
    }
}
/* /Components/Layout/AdminPageHeader.razor.rz.scp.css */
/* Admin Page Header Component */

.admin-page-header[b-3pb6q7wvgz] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #ecf0f1;
}

.admin-page-header__left[b-3pb6q7wvgz] {
    flex: 1;
}

.admin-page-header__title[b-3pb6q7wvgz] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.admin-page-header__subtitle[b-3pb6q7wvgz] {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

.admin-page-header__right[b-3pb6q7wvgz] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-page-header[b-3pb6q7wvgz] {
        flex-direction: column;
        gap: 1rem;
    }

    .admin-page-header__title[b-3pb6q7wvgz] {
        font-size: 1.5rem;
    }

    .admin-page-header__right[b-3pb6q7wvgz] {
        width: 100%;
        justify-content: stretch;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-czc7tiy5jd] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-czc7tiy5jd] {
    flex: 1;
}

.sidebar[b-czc7tiy5jd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-czc7tiy5jd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-czc7tiy5jd]  a, .top-row[b-czc7tiy5jd]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-czc7tiy5jd]  a:hover, .top-row[b-czc7tiy5jd]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-czc7tiy5jd]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-czc7tiy5jd] {
        justify-content: space-between;
    }

    .top-row[b-czc7tiy5jd]  a, .top-row[b-czc7tiy5jd]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-czc7tiy5jd] {
        flex-direction: row;
    }

    .sidebar[b-czc7tiy5jd] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-czc7tiy5jd] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-czc7tiy5jd]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-czc7tiy5jd], article[b-czc7tiy5jd] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-czc7tiy5jd] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-czc7tiy5jd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-9ipcugj1to] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-9ipcugj1to] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-9ipcugj1to] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-9ipcugj1to] {
    font-size: 1.1rem;
}

.bi[b-9ipcugj1to] {
    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-9ipcugj1to] {
    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-9ipcugj1to] {
    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-9ipcugj1to] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-9ipcugj1to] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-9ipcugj1to] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-9ipcugj1to] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-9ipcugj1to] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-9ipcugj1to] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-9ipcugj1to] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-9ipcugj1to] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-9ipcugj1to] {
        padding-bottom: 1rem;
    }

    .nav-item[b-9ipcugj1to]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-9ipcugj1to]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-9ipcugj1to]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-9ipcugj1to] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-9ipcugj1to] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-9ipcugj1to] {
        display: none;
    }

    .nav-scrollable[b-9ipcugj1to] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-uqhrdsk97f],
.components-reconnect-repeated-attempt-visible[b-uqhrdsk97f],
.components-reconnect-failed-visible[b-uqhrdsk97f],
.components-pause-visible[b-uqhrdsk97f],
.components-resume-failed-visible[b-uqhrdsk97f],
.components-rejoining-animation[b-uqhrdsk97f] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-uqhrdsk97f],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-uqhrdsk97f],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-uqhrdsk97f],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-uqhrdsk97f],
#components-reconnect-modal.components-reconnect-retrying[b-uqhrdsk97f],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-uqhrdsk97f],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-uqhrdsk97f],
#components-reconnect-modal.components-reconnect-failed[b-uqhrdsk97f],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-uqhrdsk97f] {
    display: block;
}


#components-reconnect-modal[b-uqhrdsk97f] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-uqhrdsk97f 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-uqhrdsk97f 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-uqhrdsk97f 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-uqhrdsk97f]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-uqhrdsk97f 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-uqhrdsk97f {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-uqhrdsk97f {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-uqhrdsk97f {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-uqhrdsk97f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-uqhrdsk97f] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-uqhrdsk97f] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-uqhrdsk97f] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-uqhrdsk97f] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-uqhrdsk97f] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-uqhrdsk97f] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-uqhrdsk97f 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-uqhrdsk97f] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-uqhrdsk97f {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/AdminArticles.razor.rz.scp.css */
.admin-articles[b-l4ng6k8xb6] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

/* Article title cell */
.article-title-cell[b-l4ng6k8xb6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-thumb[b-l4ng6k8xb6] {
    width: 56px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #ecf0f1;
}

.article-thumb--placeholder[b-l4ng6k8xb6] {
    background: linear-gradient(135deg, #ecf0f1 0%, #dfe6e9 100%);
}

.article-title[b-l4ng6k8xb6] {
    font-weight: 600;
    color: #2c3e50;
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-meta[b-l4ng6k8xb6] {
    font-size: 0.78rem;
    color: #95a5a6;
    margin-top: 2px;
}

/* Publish / Unpublish action buttons */
.action-btn--publish .icon-publish[b-l4ng6k8xb6]::before {
    content: "\2713"; /* checkmark */
    font-size: 16px;
    color: #27ae60;
    font-weight: bold;
}

.action-btn--publish:hover[b-l4ng6k8xb6] {
    background: rgba(46, 204, 113, 0.1);
    transform: scale(1.1);
}

.action-btn--unpublish .icon-unpublish[b-l4ng6k8xb6]::before {
    content: "\23F8"; /* pause */
    font-size: 14px;
    color: #e67e22;
    font-weight: bold;
}

.action-btn--unpublish:hover[b-l4ng6k8xb6] {
    background: rgba(230, 126, 34, 0.1);
    transform: scale(1.1);
}

/* Confirmation modal */
.modal-backdrop[b-l4ng6k8xb6] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-box[b-l4ng6k8xb6] {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.modal-title[b-l4ng6k8xb6] {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.modal-box p[b-l4ng6k8xb6] {
    color: #636e72;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.modal-actions[b-l4ng6k8xb6] {
    display: flex;
    gap: 0.75rem;
}

/* Generic admin button variants (reused from other admin pages) */
.btn[b-l4ng6k8xb6] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:disabled[b-l4ng6k8xb6] {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn-primary[b-l4ng6k8xb6] {
    background: #3498db;
    color: #fff;
}

.btn-primary:hover:not(:disabled)[b-l4ng6k8xb6] {
    background: #2980b9;
}

.btn-danger[b-l4ng6k8xb6] {
    background: #e74c3c;
    color: #fff;
}

.btn-danger:hover:not(:disabled)[b-l4ng6k8xb6] {
    background: #c0392b;
}

.btn-secondary[b-l4ng6k8xb6] {
    background: #f0f0f0;
    color: #2c3e50;
}

.btn-secondary:hover:not(:disabled)[b-l4ng6k8xb6] {
    background: #e0e0e0;
}
/* /Components/Pages/Admin/AdminDashboard.razor.rz.scp.css */
/* Admin Dashboard - Clean Design */

.admin-dashboard[b-yijwyb4nt1] {
    max-width: 1400px;
}

/* Dashboard Header */
.dashboard-header[b-yijwyb4nt1] {
    margin-bottom: 2rem;
}

.dashboard-title[b-yijwyb4nt1] {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.dashboard-subtitle[b-yijwyb4nt1] {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
}

/* Stats Cards */
.dashboard-stats[b-yijwyb4nt1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-yijwyb4nt1] {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid;
}

.stat-card:hover[b-yijwyb4nt1] {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stat-card--blue[b-yijwyb4nt1] {
    border-color: #3498db;
}

.stat-card--green[b-yijwyb4nt1] {
    border-color: #2ecc71;
}

.stat-card--orange[b-yijwyb4nt1] {
    border-color: #e67e22;
}

.stat-card--purple[b-yijwyb4nt1] {
    border-color: #9b59b6;
}

.stat-card__icon[b-yijwyb4nt1] {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-card__content[b-yijwyb4nt1] {
    flex: 1;
}

.stat-card__value[b-yijwyb4nt1] {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.stat-card__label[b-yijwyb4nt1] {
    font-size: 0.875rem;
    color: #7f8c8d;
    margin: 0.25rem 0 0 0;
}

.stat-card__trend[b-yijwyb4nt1] {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.stat-card__trend--up[b-yijwyb4nt1] {
    color: #27ae60;
    background: rgba(46, 204, 113, 0.1);
}

.stat-card__trend--down[b-yijwyb4nt1] {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Dashboard Grid */
.dashboard-grid[b-yijwyb4nt1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

/* Dashboard Card */
.dashboard-card[b-yijwyb4nt1] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.dashboard-card__header[b-yijwyb4nt1] {
    padding: 1.5rem;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-card__title[b-yijwyb4nt1] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.dashboard-card__link[b-yijwyb4nt1] {
    color: #3498db;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.dashboard-card__link:hover[b-yijwyb4nt1] {
    color: #2980b9;
}

.dashboard-card__body[b-yijwyb4nt1] {
    padding: 1.5rem;
}

/* Activity List */
.activity-list[b-yijwyb4nt1] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item[b-yijwyb4nt1] {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s;
}

.activity-item:hover[b-yijwyb4nt1] {
    background: #e9ecef;
}

.activity-item__icon[b-yijwyb4nt1] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.activity-item__content[b-yijwyb4nt1] {
    flex: 1;
}

.activity-item__text[b-yijwyb4nt1] {
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
    font-weight: 500;
}

.activity-item__time[b-yijwyb4nt1] {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Quick Actions */
.quick-actions[b-yijwyb4nt1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.quick-action-btn[b-yijwyb4nt1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.quick-action-btn__icon[b-yijwyb4nt1] {
    font-size: 2rem;
}

.quick-action-btn__text[b-yijwyb4nt1] {
    font-size: 0.875rem;
    font-weight: 600;
}

.quick-action-btn--primary[b-yijwyb4nt1] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.quick-action-btn--primary:hover[b-yijwyb4nt1] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.quick-action-btn--secondary[b-yijwyb4nt1] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.quick-action-btn--secondary:hover[b-yijwyb4nt1] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.4);
}

.quick-action-btn--success[b-yijwyb4nt1] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
}

.quick-action-btn--success:hover[b-yijwyb4nt1] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.quick-action-btn--info[b-yijwyb4nt1] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #ffffff;
}

.quick-action-btn--info:hover[b-yijwyb4nt1] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-stats[b-yijwyb4nt1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid[b-yijwyb4nt1] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dashboard-stats[b-yijwyb4nt1] {
        grid-template-columns: 1fr;
    }

    .dashboard-title[b-yijwyb4nt1] {
        font-size: 1.5rem;
    }

    .stat-card__value[b-yijwyb4nt1] {
        font-size: 1.5rem;
    }

    .quick-actions[b-yijwyb4nt1] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /Components/Pages/Admin/AdminUsers.razor.rz.scp.css */
/* Admin Users Page */

.admin-users[b-djq08cd843] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

/* Filters Bar */
.filters-bar[b-djq08cd843] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input[b-djq08cd843] {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid #dce0e4;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-input:focus[b-djq08cd843] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.filter-select[b-djq08cd843] {
    min-width: 150px;
    padding: 0.75rem 1rem;
    border: 1px solid #dce0e4;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:focus[b-djq08cd843] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Users Table */
.users-table-wrapper[b-djq08cd843] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.users-table[b-djq08cd843] {
    width: 100%;
    border-collapse: collapse;
}

.users-table thead[b-djq08cd843] {
    background: #f8f9fa;
}

.users-table th[b-djq08cd843] {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #ecf0f1;
}

.users-table tbody tr[b-djq08cd843] {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.users-table tbody tr:hover[b-djq08cd843] {
    background: #f8f9fa;
}

.users-table td[b-djq08cd843] {
    padding: 1.25rem 1.5rem;
    color: #2c3e50;
}

/* User Cell */
.user-cell[b-djq08cd843] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar[b-djq08cd843] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: white;
    font-weight: 600;
}

.user-info[b-djq08cd843] {
    display: flex;
    flex-direction: column;
}

.user-name[b-djq08cd843] {
    font-weight: 600;
    color: #2c3e50;
}

/* Badges */
.badge[b-djq08cd843] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-icon[b-djq08cd843] {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1;
}

.badge--admin[b-djq08cd843] {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.badge--teacher[b-djq08cd843] {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.badge--student[b-djq08cd843] {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.badge--active[b-djq08cd843] {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.badge--active .badge-icon[b-djq08cd843] {
    color: #27ae60;
}

.badge--inactive[b-djq08cd843] {
    background: rgba(149, 165, 166, 0.1);
    color: #7f8c8d;
}

.badge--inactive .badge-icon[b-djq08cd843] {
    color: #7f8c8d;
}

/* Actions Cell */
.actions-cell[b-djq08cd843] {
    display: flex;
    gap: 0.5rem;
}

.action-btn[b-djq08cd843] {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: #f8f9fa;
    position: relative;
}

.action-btn .icon-edit[b-djq08cd843],
.action-btn .icon-delete[b-djq08cd843] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-style: normal;
}

.action-btn--edit .icon-edit[b-djq08cd843]::before {
    content: "\270E"; /* Unicode for pencil ? */
    font-size: 16px;
    color: #3498db;
    font-weight: normal;
}

.action-btn--delete .icon-delete[b-djq08cd843]::before {
    content: "\2715"; /* Unicode for X ? */
    font-size: 18px;
    color: #e74c3c;
    font-weight: bold;
}

.action-btn--edit:hover[b-djq08cd843] {
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.1);
}

.action-btn--delete:hover[b-djq08cd843] {
    background: rgba(231, 76, 60, 0.1);
    transform: scale(1.1);
}

/* Pagination */
.pagination[b-djq08cd843] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.pagination-btn[b-djq08cd843],
.pagination-page[b-djq08cd843] {
    padding: 0.5rem 1rem;
    border: 1px solid #dce0e4;
    background: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: #2c3e50;
}

.pagination-btn:disabled[b-djq08cd843] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:not(:disabled):hover[b-djq08cd843],
.pagination-page:hover[b-djq08cd843] {
    background: #f8f9fa;
    border-color: #3498db;
}

.pagination-page.active[b-djq08cd843] {
    background: #3498db;
    color: #ffffff;
    border-color: #3498db;
}

.pagination-pages[b-djq08cd843] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-dots[b-djq08cd843] {
    padding: 0 0.5rem;
    color: #7f8c8d;
}

/* Loading and Error Messages */
.loading-container[b-djq08cd843] {
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
}

.error-message[b-djq08cd843] {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .users-table[b-djq08cd843] {
        font-size: 0.875rem;
    }

    .users-table th[b-djq08cd843],
    .users-table td[b-djq08cd843] {
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 768px) {
    .filters-bar[b-djq08cd843] {
        flex-direction: column;
    }

    .search-input[b-djq08cd843],
    .filter-select[b-djq08cd843] {
        width: 100%;
        min-width: unset;
    }

    .users-table-wrapper[b-djq08cd843] {
        overflow-x: auto;
    }

    .users-table[b-djq08cd843] {
        min-width: 800px;
    }

    .pagination[b-djq08cd843] {
        flex-wrap: wrap;
    }
}
/* /Components/Pages/Admin/EditUser.razor.rz.scp.css */
/* Edit User Page */
.edit-user[b-6ti1e0nppq] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.edit-user__header[b-6ti1e0nppq] {
    margin-bottom: 2rem;
}

.btn-back[b-6ti1e0nppq] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #dce0e4;
    border-radius: 8px;
    color: #2c3e50;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.btn-back:hover[b-6ti1e0nppq] {
    background: #ecf0f1;
    border-color: #bdc3c7;
}

.btn-back .icon[b-6ti1e0nppq] {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/assets/images/icons/ico-arrow-left.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.edit-user__title[b-6ti1e0nppq] {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Loading & Error States */
.loading-container[b-6ti1e0nppq],
.error-container[b-6ti1e0nppq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.spinner[b-6ti1e0nppq] {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin-b-6ti1e0nppq 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-6ti1e0nppq {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-small[b-6ti1e0nppq] {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin-b-6ti1e0nppq 0.8s linear infinite;
    display: inline-block;
}

.error-container h2[b-6ti1e0nppq] {
    color: #e74c3c;
    margin: 1rem 0;
}

/* Alerts */
.alert[b-6ti1e0nppq] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert--success[b-6ti1e0nppq] {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #27ae60;
}

.alert--error[b-6ti1e0nppq] {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.alert--warning[b-6ti1e0nppq] {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.3);
    color: #f39c12;
}

.alert .icon[b-6ti1e0nppq] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Content Grid */
.edit-user__content[b-6ti1e0nppq] {
    display: flex;
    flex-direction: column;
}

.edit-user__grid[b-6ti1e0nppq] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Cards */
.card[b-6ti1e0nppq] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card--full[b-6ti1e0nppq] {
    grid-column: 1 / -1;
}

.card__header[b-6ti1e0nppq] {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #ecf0f1;
}

.card__title[b-6ti1e0nppq] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.card__body[b-6ti1e0nppq] {
    padding: 1.5rem;
}

/* Form Elements */
.form-group[b-6ti1e0nppq] {
    margin-bottom: 1.5rem;
}

.form-group:last-child[b-6ti1e0nppq] {
    margin-bottom: 0;
}

.form-label[b-6ti1e0nppq] {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input[b-6ti1e0nppq] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dce0e4;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #ffffff;
}

.form-input:focus[b-6ti1e0nppq] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-input[b-6ti1e0nppq]::placeholder {
    color: #95a5a6;
}

/* Checkbox Group */
.checkbox-group[b-6ti1e0nppq] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s;
}

.checkbox-group:hover[b-6ti1e0nppq] {
    background: #ecf0f1;
}

.form-checkbox[b-6ti1e0nppq] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3498db;
}

.checkbox-group .form-label[b-6ti1e0nppq] {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

/* Roles Grid */
.roles-grid[b-6ti1e0nppq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.role-item[b-6ti1e0nppq] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.role-item:hover[b-6ti1e0nppq] {
    background: #ecf0f1;
    border-color: #3498db;
}

.role-item:has(.form-checkbox:checked)[b-6ti1e0nppq] {
    background: rgba(52, 152, 219, 0.1);
    border-color: #3498db;
}

.role-label[b-6ti1e0nppq] {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.role-name[b-6ti1e0nppq] {
    font-weight: 600;
    color: #2c3e50;
}

/* Statistics */
.stat-item[b-6ti1e0nppq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child[b-6ti1e0nppq] {
    border-bottom: none;
}

.stat-label[b-6ti1e0nppq] {
    color: #7f8c8d;
    font-size: 0.875rem;
}

.stat-value[b-6ti1e0nppq] {
    font-weight: 600;
    color: #2c3e50;
}

/* Actions */
.edit-user__actions[b-6ti1e0nppq] {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    padding-top: 1.5rem;
    border-top: 2px solid #ecf0f1;
}

/* Buttons */
.btn[b-6ti1e0nppq] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn:disabled[b-6ti1e0nppq] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-6ti1e0nppq] {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-6ti1e0nppq] {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary[b-6ti1e0nppq] {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover:not(:disabled)[b-6ti1e0nppq] {
    background: #dce0e4;
}

.btn-danger[b-6ti1e0nppq] {
    background: #e74c3c;
    color: #ffffff;
    margin-left: auto;
}

.btn-danger:hover:not(:disabled)[b-6ti1e0nppq] {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-sm[b-6ti1e0nppq] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn .icon[b-6ti1e0nppq] {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-primary .icon-check[b-6ti1e0nppq] {
    background-image: url('/assets/images/icons/ico-check.svg');
    filter: brightness(0) invert(1);
}

.btn-danger .icon-trash[b-6ti1e0nppq] {
    background-image: url('/assets/images/icons/ico-trash-red.svg');
    filter: brightness(0) invert(1);
}

/* Icon Styles */
.icon-success[b-6ti1e0nppq] {
    background-image: url('/assets/images/icons/ico-success.svg');
}

.icon-error[b-6ti1e0nppq] {
    background-image: url('/assets/images/icons/ico-error.svg');
}

.icon-alert[b-6ti1e0nppq] {
    background-image: url('/assets/images/icons/ico-alert.svg');
}

.alert .icon[b-6ti1e0nppq] {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .edit-user[b-6ti1e0nppq] {
        padding: 1.5rem;
    }

    .edit-user__grid[b-6ti1e0nppq] {
        grid-template-columns: 1fr;
    }

    .card--full[b-6ti1e0nppq] {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .edit-user[b-6ti1e0nppq] {
        padding: 1rem;
    }

    .edit-user__title[b-6ti1e0nppq] {
        font-size: 1.5rem;
    }

    .edit-user__actions[b-6ti1e0nppq] {
        flex-direction: column;
    }

    .btn[b-6ti1e0nppq] {
        width: 100%;
        justify-content: center;
    }

    .btn-danger[b-6ti1e0nppq] {
        margin-left: 0;
    }

    .roles-grid[b-6ti1e0nppq] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Admin/UserRoles.razor.rz.scp.css */
.admin-page[b-ut5djv6rqt] {
    padding: 2rem;
}

.admin-page__header[b-ut5djv6rqt] {
    margin-bottom: 2rem;
}

.admin-page__title[b-ut5djv6rqt] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.admin-page__subtitle[b-ut5djv6rqt] {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.admin-page__content[b-ut5djv6rqt] {
    background: #fff;
    border-radius: 8px;
}

.badge[b-ut5djv6rqt] {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.modal.show[b-ut5djv6rqt] {
    display: block;
}

.form-check-input:checked[b-ut5djv6rqt] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.list-group-item[b-ut5djv6rqt] {
    border-left: none;
    border-right: none;
}

.list-group-item:first-child[b-ut5djv6rqt] {
    border-top: none;
}

.list-group-item:last-child[b-ut5djv6rqt] {
    border-bottom: none;
}

.alert[b-ut5djv6rqt] {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
/* /Components/Pages/Registered/CVConfirmPage.razor.rz.scp.css */
/* Personal Page Component Styles */
/* Main styles are imported from profile.css */
/* /Components/Pages/Registered/CVPage.razor.rz.scp.css */
/* Personal Page Component Styles */
/* Main styles are imported from profile.css */
/* /Components/Pages/Registered/CVRequestPage.razor.rz.scp.css */
/* Personal Page Component Styles */
/* Main styles are imported from profile.css */
/* /Components/Pages/Registered/PersonalPage.razor.rz.scp.css */
/* Personal Page Component Styles */
/* Main styles are imported from profile.css */
