/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* Admin Layout Styles */
.admin-layout[b-bo5bgstw1q] {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
}

/* Sidebar Styles */
.sidebar[b-bo5bgstw1q] {
    width: 280px;
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar[b-bo5bgstw1q]::-webkit-scrollbar {
    width: 6px;
}

.sidebar[b-bo5bgstw1q]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar[b-bo5bgstw1q]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.sidebar-header[b-bo5bgstw1q] {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo[b-bo5bgstw1q] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
}

.logo i[b-bo5bgstw1q] {
    font-size: 32px;
    color: #60a5fa;
}

.sidebar-toggle[b-bo5bgstw1q] {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

.sidebar-nav[b-bo5bgstw1q] {
    flex: 1;
    padding: 20px 0;
}

.nav-section[b-bo5bgstw1q] {
    margin-bottom: 24px;
}

.nav-section-title[b-bo5bgstw1q] {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.nav-item[b-bo5bgstw1q] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.nav-item i[b-bo5bgstw1q] {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.nav-item:hover[b-bo5bgstw1q] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #60a5fa;
}

.nav-item.active[b-bo5bgstw1q] {
    background: rgba(96, 165, 250, 0.2);
    color: white;
    border-left-color: #60a5fa;
}

.sidebar-footer[b-bo5bgstw1q] {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info[b-bo5bgstw1q] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar[b-bo5bgstw1q] {
    font-size: 40px;
    color: #60a5fa;
}

.user-details[b-bo5bgstw1q] {
    flex: 1;
}

.user-name[b-bo5bgstw1q] {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.logout-link[b-bo5bgstw1q] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logout-link:hover[b-bo5bgstw1q] {
    color: #60a5fa;
}

/* Main Content */
.main-content[b-bo5bgstw1q] {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Navbar */
.top-navbar[b-bo5bgstw1q] {
    background: white;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-menu-toggle[b-bo5bgstw1q] {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 8px;
}

.navbar-search[b-bo5bgstw1q] {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.navbar-search i[b-bo5bgstw1q] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
}

.navbar-search input[b-bo5bgstw1q] {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-search input:focus[b-bo5bgstw1q] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.navbar-actions[b-bo5bgstw1q] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-icon[b-bo5bgstw1q] {
    position: relative;
    background: none;
    border: none;
    font-size: 22px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-icon:hover[b-bo5bgstw1q] {
    background: #f3f4f6;
    color: #3b82f6;
}

.navbar-icon .badge[b-bo5bgstw1q] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.user-menu[b-bo5bgstw1q] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.user-menu:hover[b-bo5bgstw1q] {
    background: #f3f4f6;
}

.user-avatar-small[b-bo5bgstw1q] {
    font-size: 32px;
    color: #3b82f6;
}

.user-name-nav[b-bo5bgstw1q] {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Page Content */
.page-content[b-bo5bgstw1q] {
    flex: 1;
    padding: 30px;
}

/* Sidebar Overlay */
.sidebar-overlay[b-bo5bgstw1q] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active[b-bo5bgstw1q] {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sidebar[b-bo5bgstw1q] {
        transform: translateX(-100%);
    }

    .sidebar.active[b-bo5bgstw1q] {
        transform: translateX(0);
    }

    .sidebar-toggle[b-bo5bgstw1q] {
        display: block;
    }

    .main-content[b-bo5bgstw1q] {
        margin-left: 0;
    }

    .mobile-menu-toggle[b-bo5bgstw1q] {
        display: block;
    }

    .navbar-search[b-bo5bgstw1q] {
        display: none;
    }

    .user-name-nav[b-bo5bgstw1q] {
        display: none;
    }

    .page-content[b-bo5bgstw1q] {
        padding: 20px 16px;
    }
}

@media (max-width: 576px) {
    .top-navbar[b-bo5bgstw1q] {
        padding: 0 16px;
    }

    .navbar-actions[b-bo5bgstw1q] {
        gap: 8px;
    }
}

/* Animations */
@keyframes slideIn-b-bo5bgstw1q {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-content>*[b-bo5bgstw1q] {
    animation: slideIn-b-bo5bgstw1q 0.4s ease-out;
}
/* /Components/Layout/AuthLayout.razor.rz.scp.css */
.auth-layout[b-0otmt0ttlk] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.auth-background[b-0otmt0ttlk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.auth-container[b-0otmt0ttlk] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    padding: 2rem;
}

.auth-card[b-0otmt0ttlk] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    animation: slideUp-b-0otmt0ttlk 0.5s ease-out;
}

@keyframes slideUp-b-0otmt0ttlk {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-brand[b-0otmt0ttlk] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-brand i[b-0otmt0ttlk] {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.auth-brand h1[b-0otmt0ttlk] {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0.5rem 0;
}

.auth-brand p[b-0otmt0ttlk] {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.auth-content[b-0otmt0ttlk] {
    margin-bottom: 2rem;
}

.auth-footer[b-0otmt0ttlk] {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.auth-footer p[b-0otmt0ttlk] {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-container[b-0otmt0ttlk] {
        padding: 1rem;
    }

    .auth-card[b-0otmt0ttlk] {
        padding: 2rem 1.5rem;
    }

    .auth-brand h1[b-0otmt0ttlk] {
        font-size: 1.75rem;
    }
}
/* /Components/Layout/EmployeeLayout.razor.rz.scp.css */
/* Employee Layout Styles */
.employee-layout[b-08y5dwodm1] {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
}

/* Sidebar Styles - Green Theme for Employees */
.employee-layout .sidebar[b-08y5dwodm1] {
    width: 280px;
    background: linear-gradient(180deg, #047857 0%, #059669 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.employee-layout .sidebar[b-08y5dwodm1]::-webkit-scrollbar {
    width: 6px;
}

.employee-layout .sidebar[b-08y5dwodm1]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.employee-layout .sidebar[b-08y5dwodm1]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.employee-layout .sidebar-header[b-08y5dwodm1] {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.employee-layout .logo[b-08y5dwodm1] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
}

.employee-layout .logo i[b-08y5dwodm1] {
    font-size: 32px;
    color: #6ee7b7;
}

.employee-layout .sidebar-toggle[b-08y5dwodm1] {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

.employee-layout .sidebar-nav[b-08y5dwodm1] {
    flex: 1;
    padding: 20px 0;
}

.employee-layout .nav-section[b-08y5dwodm1] {
    margin-bottom: 24px;
}

.employee-layout .nav-section-title[b-08y5dwodm1] {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.employee-layout .nav-item[b-08y5dwodm1] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.employee-layout .nav-item i[b-08y5dwodm1] {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.employee-layout .nav-item:hover[b-08y5dwodm1] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #6ee7b7;
}

.employee-layout .nav-item.active[b-08y5dwodm1] {
    background: rgba(110, 231, 183, 0.2);
    color: white;
    border-left-color: #6ee7b7;
}

.employee-layout .sidebar-footer[b-08y5dwodm1] {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.employee-layout .user-info[b-08y5dwodm1] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.employee-layout .user-avatar[b-08y5dwodm1] {
    font-size: 40px;
    color: #6ee7b7;
}

.employee-layout .user-details[b-08y5dwodm1] {
    flex: 1;
}

.employee-layout .user-name[b-08y5dwodm1] {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.employee-layout .logout-link[b-08y5dwodm1] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.employee-layout .logout-link:hover[b-08y5dwodm1] {
    color: #6ee7b7;
}

/* Main Content */
.employee-layout .main-content[b-08y5dwodm1] {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Navbar */
.employee-layout .top-navbar[b-08y5dwodm1] {
    background: white;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.employee-layout .mobile-menu-toggle[b-08y5dwodm1] {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 8px;
}

.employee-layout .navbar-title[b-08y5dwodm1] {
    flex: 1;
}

.employee-layout .navbar-title h1[b-08y5dwodm1] {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.employee-layout .navbar-actions[b-08y5dwodm1] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.employee-layout .navbar-icon[b-08y5dwodm1] {
    position: relative;
    background: none;
    border: none;
    font-size: 22px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.employee-layout .navbar-icon:hover[b-08y5dwodm1] {
    background: #f3f4f6;
    color: #059669;
}

.employee-layout .navbar-icon .badge[b-08y5dwodm1] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.employee-layout .user-menu[b-08y5dwodm1] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.employee-layout .user-menu:hover[b-08y5dwodm1] {
    background: #f3f4f6;
}

.employee-layout .user-avatar-small[b-08y5dwodm1] {
    font-size: 32px;
    color: #059669;
}

.employee-layout .user-name-nav[b-08y5dwodm1] {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Page Content */
.employee-layout .page-content[b-08y5dwodm1] {
    flex: 1;
    padding: 30px;
}

/* Sidebar Overlay */
.employee-layout .sidebar-overlay[b-08y5dwodm1] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.employee-layout .sidebar-overlay.active[b-08y5dwodm1] {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .employee-layout .sidebar[b-08y5dwodm1] {
        transform: translateX(-100%);
    }

    .employee-layout .sidebar.active[b-08y5dwodm1] {
        transform: translateX(0);
    }

    .employee-layout .sidebar-toggle[b-08y5dwodm1] {
        display: block;
    }

    .employee-layout .main-content[b-08y5dwodm1] {
        margin-left: 0;
    }

    .employee-layout .mobile-menu-toggle[b-08y5dwodm1] {
        display: block;
    }

    .employee-layout .navbar-title h1[b-08y5dwodm1] {
        font-size: 18px;
    }

    .employee-layout .user-name-nav[b-08y5dwodm1] {
        display: none;
    }

    .employee-layout .page-content[b-08y5dwodm1] {
        padding: 20px 16px;
    }
}

@media (max-width: 576px) {
    .employee-layout .top-navbar[b-08y5dwodm1] {
        padding: 0 16px;
    }

    .employee-layout .navbar-actions[b-08y5dwodm1] {
        gap: 8px;
    }

    .employee-layout .navbar-title h1[b-08y5dwodm1] {
        font-size: 16px;
    }
}

/* Animations */
@keyframes slideIn-b-08y5dwodm1 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.employee-layout .page-content>*[b-08y5dwodm1] {
    animation: slideIn-b-08y5dwodm1 0.4s ease-out;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-0ist0fiizc],
.components-reconnect-repeated-attempt-visible[b-0ist0fiizc],
.components-reconnect-failed-visible[b-0ist0fiizc],
.components-pause-visible[b-0ist0fiizc],
.components-resume-failed-visible[b-0ist0fiizc],
.components-rejoining-animation[b-0ist0fiizc] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-0ist0fiizc],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-0ist0fiizc],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-0ist0fiizc],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-0ist0fiizc],
#components-reconnect-modal.components-reconnect-retrying[b-0ist0fiizc],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-0ist0fiizc],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-0ist0fiizc],
#components-reconnect-modal.components-reconnect-failed[b-0ist0fiizc],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-0ist0fiizc] {
    display: block;
}


#components-reconnect-modal[b-0ist0fiizc] {
    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-0ist0fiizc 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-0ist0fiizc 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-0ist0fiizc 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-0ist0fiizc]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-0ist0fiizc 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-0ist0fiizc {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-0ist0fiizc {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-0ist0fiizc {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-0ist0fiizc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-0ist0fiizc] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-0ist0fiizc] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-0ist0fiizc] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-0ist0fiizc] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-0ist0fiizc] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-0ist0fiizc] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-0ist0fiizc 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-0ist0fiizc] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-0ist0fiizc {
    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/Account/AccessDenied.razor.rz.scp.css */
.access-denied-container[b-50d7y2arhx] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
}

.access-denied-card[b-50d7y2arhx] {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-50d7y2arhx 0.5s ease-out;
}

@keyframes slideUp-b-50d7y2arhx {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-container[b-50d7y2arhx] {
    color: #dc3545;
    margin-bottom: 30px;
}

.access-denied-card h2[b-50d7y2arhx] {
    color: #333;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 32px;
}

.access-denied-card .lead[b-50d7y2arhx] {
    color: #666;
    font-size: 18px;
    margin-bottom: 12px;
}

.access-denied-card .text-muted[b-50d7y2arhx] {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.button-group[b-50d7y2arhx] {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn[b-50d7y2arhx] {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-primary[b-50d7y2arhx] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover[b-50d7y2arhx] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline-secondary[b-50d7y2arhx] {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover[b-50d7y2arhx] {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .access-denied-card[b-50d7y2arhx] {
        padding: 40px 20px;
    }

    .access-denied-card h2[b-50d7y2arhx] {
        font-size: 24px;
    }

    .button-group[b-50d7y2arhx] {
        flex-direction: column;
    }

    .btn[b-50d7y2arhx] {
        width: 100%;
    }
}
/* /Components/Pages/Account/Login.razor.rz.scp.css */
.login-container[b-bfeqhu743u] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-card[b-bfeqhu743u] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-bfeqhu743u 0.5s ease-out;
}

@keyframes slideUp-b-bfeqhu743u {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header[b-bfeqhu743u] {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2[b-bfeqhu743u] {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 28px;
}

.login-header p[b-bfeqhu743u] {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.form-label[b-bfeqhu743u] {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control[b-bfeqhu743u] {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus[b-bfeqhu743u] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.btn-primary[b-bfeqhu743u] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary:hover:not(:disabled)[b-bfeqhu743u] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled[b-bfeqhu743u] {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-check-input:checked[b-bfeqhu743u] {
    background-color: #667eea;
    border-color: #667eea;
}

.login-footer[b-bfeqhu743u] {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.alert[b-bfeqhu743u] {
    border-radius: 10px;
    border: none;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.validation-message[b-bfeqhu743u] {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

@media (max-width: 576px) {
    .login-card[b-bfeqhu743u] {
        padding: 30px 20px;
    }

    .login-header h2[b-bfeqhu743u] {
        font-size: 24px;
    }
}
/* /Components/Pages/Account/Logout.razor.rz.scp.css */
.logout-container[b-noiv91hwdk] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.logout-card[b-noiv91hwdk] {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeIn-b-noiv91hwdk 0.3s ease-out;
}

@keyframes fadeIn-b-noiv91hwdk {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logout-card h4[b-noiv91hwdk] {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.logout-card .text-muted[b-noiv91hwdk] {
    font-size: 14px;
}
/* /Components/Pages/Customers/Index.razor.rz.scp.css */
/* Shared CRUD Page Styles */
.customers-container[b-5sgrhysmwa],
.leads-container[b-5sgrhysmwa],
.policies-container[b-5sgrhysmwa],
.invoices-container[b-5sgrhysmwa],
.appointments-container[b-5sgrhysmwa],
.tasks-container[b-5sgrhysmwa] {
    max-width: 1400px;
}

.search-filter-bar[b-5sgrhysmwa] {
    margin-bottom: 24px;
}

.search-box[b-5sgrhysmwa] {
    position: relative;
    max-width: 400px;
}

.search-box i[b-5sgrhysmwa] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

.search-box .form-control[b-5sgrhysmwa] {
    padding-left: 42px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.search-box .form-control:focus[b-5sgrhysmwa] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Dashboard Styles */
.dashboard-container[b-3pzsqref40] {
    max-width: 1400px;
}

/* Page Header */
.page-header[b-3pzsqref40] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-title[b-3pzsqref40] {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.page-subtitle[b-3pzsqref40] {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

.header-actions .btn[b-3pzsqref40] {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
}

/* Statistics Grid */
.stats-grid[b-3pzsqref40] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card[b-3pzsqref40] {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-card:hover[b-3pzsqref40] {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon[b-3pzsqref40] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.stat-card-blue .stat-icon[b-3pzsqref40] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.stat-card-green .stat-icon[b-3pzsqref40] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stat-card-purple .stat-icon[b-3pzsqref40] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.stat-card-orange .stat-icon[b-3pzsqref40] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.stat-content[b-3pzsqref40] {
    flex: 1;
}

.stat-value[b-3pzsqref40] {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label[b-3pzsqref40] {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.stat-change[b-3pzsqref40] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}

.stat-change.positive[b-3pzsqref40] {
    color: #10b981;
}

.stat-change.negative[b-3pzsqref40] {
    color: #ef4444;
}

/* Dashboard Grid */
.dashboard-grid[b-3pzsqref40] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.dashboard-card[b-3pzsqref40] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.chart-card[b-3pzsqref40] {
    grid-column: span 2;
}

.card-header[b-3pzsqref40] {
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3[b-3pzsqref40] {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.view-all-link[b-3pzsqref40] {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-link:hover[b-3pzsqref40] {
    color: #2563eb;
}

.card-body[b-3pzsqref40] {
    padding: 24px;
}

/* Chart Placeholder */
.chart-placeholder[b-3pzsqref40] {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    color: #9ca3af;
}

.chart-placeholder i[b-3pzsqref40] {
    font-size: 48px;
    margin-bottom: 12px;
}

/* Activity List */
.activity-list[b-3pzsqref40] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item[b-3pzsqref40] {
    display: flex;
    gap: 16px;
}

.activity-icon[b-3pzsqref40] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.activity-icon-blue[b-3pzsqref40] {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.activity-icon-green[b-3pzsqref40] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.activity-icon-purple[b-3pzsqref40] {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.activity-icon-orange[b-3pzsqref40] {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.activity-content[b-3pzsqref40] {
    flex: 1;
}

.activity-title[b-3pzsqref40] {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.activity-subtitle[b-3pzsqref40] {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
}

.activity-time[b-3pzsqref40] {
    color: #9ca3af;
    font-size: 12px;
}

/* Appointment List */
.appointment-list[b-3pzsqref40] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.appointment-item[b-3pzsqref40] {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.appointment-item:hover[b-3pzsqref40] {
    background: #f3f4f6;
}

.appointment-date[b-3pzsqref40] {
    text-align: center;
    padding: 8px 12px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
}

.date-day[b-3pzsqref40] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.date-month[b-3pzsqref40] {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    margin-top: 4px;
}

.appointment-details[b-3pzsqref40] {
    flex: 1;
}

.appointment-title[b-3pzsqref40] {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.appointment-time[b-3pzsqref40] {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.appointment-customer[b-3pzsqref40] {
    color: #9ca3af;
    font-size: 13px;
}

/* Policy List */
.policy-list[b-3pzsqref40] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-item[b-3pzsqref40] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.policy-item:hover[b-3pzsqref40] {
    background: #f3f4f6;
}

.policy-name[b-3pzsqref40] {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.policy-count[b-3pzsqref40] {
    color: #6b7280;
    font-size: 13px;
}

.policy-revenue[b-3pzsqref40] {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
}

/* Responsive */
@media (max-width: 1200px) {
    .chart-card[b-3pzsqref40] {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .page-header[b-3pzsqref40] {
        flex-direction: column;
        gap: 16px;
    }

    .stats-grid[b-3pzsqref40] {
        grid-template-columns: 1fr;
    }

    .dashboard-grid[b-3pzsqref40] {
        grid-template-columns: 1fr;
    }

    .page-title[b-3pzsqref40] {
        font-size: 24px;
    }
}
/* /Components/Pages/Reports/Index.razor.rz.scp.css */
.reports-container[b-grfciyezax] {
    padding: 2rem;
}

.stat-card[b-grfciyezax] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-grfciyezax] {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.stat-icon[b-grfciyezax] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.stat-details[b-grfciyezax] {
    flex: 1;
}

.stat-details h3[b-grfciyezax] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #1f2937;
}

.stat-details p[b-grfciyezax] {
    margin: 0.25rem 0;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-details small[b-grfciyezax] {
    font-size: 0.75rem;
    font-weight: 600;
}

.card[b-grfciyezax] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-header[b-grfciyezax] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px 12px 0 0 !important;
    padding: 1rem 1.5rem;
    border: none;
}

.card-header h5[b-grfciyezax] {
    font-weight: 600;
}

.card-body[b-grfciyezax] {
    padding: 1.5rem;
}

.table-sm th[b-grfciyezax] {
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.table-sm td[b-grfciyezax] {
    color: #1f2937;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .reports-container[b-grfciyezax] {
        padding: 1rem;
    }

    .stat-card[b-grfciyezax] {
        flex-direction: column;
        text-align: center;
    }

    .stat-details h3[b-grfciyezax] {
        font-size: 1.5rem;
    }
}
/* /Components/Pages/Users/Index.razor.rz.scp.css */
/* Users Page Styles */
.users-container[b-x6am9itlxp] {
    max-width: 1400px;
}

.card[b-x6am9itlxp] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: none;
}

.card-body[b-x6am9itlxp] {
    padding: 24px;
}

/* Table Styles */
.table[b-x6am9itlxp] {
    margin-bottom: 0;
}

.table thead th[b-x6am9itlxp] {
    background: #f9fafb;
    color: #6b7280;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
    padding: 16px;
}

.table tbody td[b-x6am9itlxp] {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
}

.table tbody tr:hover[b-x6am9itlxp] {
    background: #f9fafb;
}

.user-info-cell[b-x6am9itlxp] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-small[b-x6am9itlxp] {
    font-size: 32px;
    color: #3b82f6;
}

/* Badge Styles */
.badge[b-x6am9itlxp] {
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 6px;
}

.bg-purple[b-x6am9itlxp] {
    background-color: #8b5cf6;
}

/* Modal Styles */
.modal-backdrop[b-x6am9itlxp] {
    background: rgba(0, 0, 0, 0.5);
}

.modal-content[b-x6am9itlxp] {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-x6am9itlxp] {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 24px;
}

.modal-title[b-x6am9itlxp] {
    font-weight: 700;
    color: #1f2937;
}

.modal-body[b-x6am9itlxp] {
    padding: 24px;
}

.modal-footer[b-x6am9itlxp] {
    border-top: 1px solid #e5e7eb;
    padding: 16px 24px;
}

/* Form Styles */
.form-label[b-x6am9itlxp] {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control[b-x6am9itlxp],
.form-select[b-x6am9itlxp] {
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus[b-x6am9itlxp],
.form-select:focus[b-x6am9itlxp] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-check-input[b-x6am9itlxp] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #e5e7eb;
}

.form-check-input:checked[b-x6am9itlxp] {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Button Styles */
.btn[b-x6am9itlxp] {
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-sm[b-x6am9itlxp] {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-outline-primary[b-x6am9itlxp] {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.btn-outline-primary:hover[b-x6am9itlxp] {
    background: #3b82f6;
    color: white;
}

.btn-outline-danger[b-x6am9itlxp] {
    border: 2px solid #ef4444;
    color: #ef4444;
}

.btn-outline-danger:hover[b-x6am9itlxp] {
    background: #ef4444;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .table-responsive[b-x6am9itlxp] {
        overflow-x: auto;
    }

    .user-info-cell[b-x6am9itlxp] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* /Components/Shared/ExportButton.razor.rz.scp.css */
.export-dropdown[b-aafowv88xh] {
    position: relative;
    display: inline-block;
}

.export-dropdown .dropdown-menu[b-aafowv88xh] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    z-index: 1000;
}

.export-dropdown .dropdown-item[b-aafowv88xh] {
    padding: 10px 16px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
}

.export-dropdown .dropdown-item:hover[b-aafowv88xh] {
    background: #f3f4f6;
}

.export-dropdown .dropdown-item:first-child[b-aafowv88xh] {
    border-radius: 8px 8px 0 0;
}

.export-dropdown .dropdown-item:last-child[b-aafowv88xh] {
    border-radius: 0 0 8px 8px;
}
/* /Components/Shared/Pagination.razor.rz.scp.css */
.pagination-container[b-es4j62olny] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.pagination-info[b-es4j62olny] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-size-selector[b-es4j62olny] {
    width: auto;
    min-width: 140px;
}

.pagination[b-es4j62olny] {
    margin: 0;
}

.page-link[b-es4j62olny] {
    border-radius: 6px;
    margin: 0 2px;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-link:hover[b-es4j62olny] {
    background: #f3f4f6;
    border-color: #3b82f6;
    color: #3b82f6;
}

.page-item.active .page-link[b-es4j62olny] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.page-item.disabled .page-link[b-es4j62olny] {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 576px) {
    .pagination-container[b-es4j62olny] {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination-info[b-es4j62olny] {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination[b-es4j62olny] {
        justify-content: center;
    }
}
