/* /Components/EntityList/EntityGrid.razor.rz.scp.css */
/* EntityGrid.razor.css - Scoped styles for the EntityGrid component */

/* Syncfusion Grid Layout - Allow internal calculations to work correctly */
[b-8ahtdfyovl] .e-grid {
    width: 100%;
    box-sizing: border-box;
}

/* Allow Syncfusion to manage its own internal table widths for correct column alignment */
[b-8ahtdfyovl] .e-grid .e-table,
[b-8ahtdfyovl] .e-gridheader .e-table,
[b-8ahtdfyovl] .e-gridcontent .e-table {
    border: none !important;
    border-collapse: separate;
    border-spacing: 0;
}

/* Ensure the grid content area can scroll correctly */
[b-8ahtdfyovl] .e-gridcontent {
    overflow: auto;
}

/* Fix for the "gutter" or divider between frozen and movable columns */
[b-8ahtdfyovl] .e-grid .e-frozen-divider {
    width: 1px !important;
    background-color: rgba(64, 68, 72, 0.5) !important;
}

/* Allow header text to wrap but maintain grid layout */
[b-8ahtdfyovl] .e-grid .e-headertext,
[b-8ahtdfyovl] .e-grid .e-gridheader .e-headercelldiv,
[b-8ahtdfyovl] .e-grid .e-frozenheader .e-headercelldiv {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Grid Action Buttons - Small horizontal buttons for grid cells */
.grid-action-buttons[b-8ahtdfyovl] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.125rem;
}


.grid-action-btn[b-8ahtdfyovl] {
    /* Square-ish buttons (consistent size) with transparent background and colored border */
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 6px; /* subtle rounding so shape appears square */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.12s ease;
    cursor: pointer;
    min-width: 28px;
    background: transparent !important; /* ensure transparency overrides global styles */
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
}

.grid-action-btn:hover[b-8ahtdfyovl] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.grid-action-btn:active[b-8ahtdfyovl] {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

/* Color-matched variants that follow the status-badge color / border approach */
.grid-action-btn.btn-edit[b-8ahtdfyovl] {
    /* Use app primary blue (nav link color) for edit action */
    color: var(--color-primary);
    background: transparent !important;
    border-color: rgba(0, 123, 255, 0.35); /* matches --color-primary (#007bff) */
}

.grid-action-btn.btn-edit:hover[b-8ahtdfyovl] {
    background-color: rgba(0, 123, 255, 0.06);
}

.grid-action-btn.btn-delete[b-8ahtdfyovl] {
    /* Danger / Overdue style */
    color: #dc3545;
    background: transparent !important;
    border-color: rgba(220, 53, 69, 0.35);
}

.grid-action-btn.btn-delete:hover[b-8ahtdfyovl] {
    background-color: rgba(220, 53, 69, 0.06);
}

.grid-action-btn.btn-addyear[b-8ahtdfyovl] {
    /* Success style */
    color: #28a745;
    background: transparent !important;
    border-color: rgba(40, 167, 69, 0.35);
}

.grid-action-btn.btn-addyear:hover[b-8ahtdfyovl] {
    background-color: rgba(40, 167, 69, 0.06);
}

.grid-action-btn .e-icons[b-8ahtdfyovl] {
    font-size: 0.8rem;
    color: inherit; /* ensure icons match text color */
}

/* Cell specific styling */
.company-name-cell[b-8ahtdfyovl] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.checkbox-cell[b-8ahtdfyovl] {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Status Badges */
.status-badge[b-8ahtdfyovl] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.status-success[b-8ahtdfyovl] {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-warning[b-8ahtdfyovl] {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-danger[b-8ahtdfyovl] {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-secondary[b-8ahtdfyovl] {
    background-color: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.status-info[b-8ahtdfyovl] {
    background-color: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

/* Grid Footer */
.grid-footer[b-8ahtdfyovl] {
    color: rgba(255, 255, 255, 0.6);
}

.grid-footer .text-primary[b-8ahtdfyovl] {
    color: #007bff !important;
}
/* /Components/Layout/AdminMenu.razor.rz.scp.css */
/* Scoped styles for AdminMenu component to ensure the dropdown toggle matches sidebar links */

button.nav-link.dropdown-toggle[b-91e3pm1l4e] {
    background-color: transparent !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 300 !important; /* light font */
    padding: 0.25rem 0; /* match nav-link spacing */
}

/* Ensure the icon and caret align and don't introduce extra background */
button.nav-link.dropdown-toggle i[b-91e3pm1l4e],
button.nav-link.dropdown-toggle span[b-91e3pm1l4e] {
    color: inherit !important;
}

/* Remove default focus background but keep outline for accessibility */
button.nav-link.dropdown-toggle:focus[b-91e3pm1l4e] {
    background: transparent !important;
    outline: 2px solid rgba(255, 255, 255, 0.08);
    outline-offset: 2px;
}

/* Hover should match other nav links */
button.nav-link.dropdown-toggle:hover[b-91e3pm1l4e] {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}
/* /Components/Layout/AutoHideSidebar.razor.rz.scp.css */
.container[b-3urgl61rgj] {
    display: flex;
    flex-direction: column;
    background-color: #253529;
    border-radius: 0 10px 10px 0;
    padding: 1rem;
}

.expand[b-3urgl61rgj] {
    width: 25rem;
}

.collapse[b-3urgl61rgj] {
    width: 3rem;
}

.menu-icon[b-3urgl61rgj] {
    color: white
}

.name[b-3urgl61rgj] {
    color: white
}


.bi-house-door-fill-nav-menu[b-3urgl61rgj] {
    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-3urgl61rgj] {
    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-3urgl61rgj] {
    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");
}
/* /Components/Layout/LoginDisplay.razor.rz.scp.css */
[b-xcwhbkmqkf] .top-bar {
    background-color: #2c3e50;
    color: white;
    padding: 0.25rem .25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

[b-xcwhbkmqkf] .top-bar p {
    margin: 0;
    font-weight: 500;
    display: inline-block;
    margin-right: 1rem;
}

[b-xcwhbkmqkf] .top-bar a {
    color: #ecf0f1;
    text-decoration: none;
    margin-right: 1.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
}

[b-xcwhbkmqkf] .top-bar a:hover {
    background-color: #34495e;
    color: white;
    text-decoration: none;
}

[b-xcwhbkmqkf] .top-bar a:last-child {
    margin-right: 0;
}

/* Authentication component specific styles */
[b-xcwhbkmqkf] .welcome-text {
    color: #ecf0f1;
    font-weight: 500;
    margin-right: 1rem;
    display: inline-block;
}

[b-xcwhbkmqkf] .profile-link {
    color: #3498db;
    text-decoration: none;
    margin-right: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid #3498db;
}

[b-xcwhbkmqkf] .profile-link:hover {
    background-color: #3498db;
    color: white;
    text-decoration: none;
}

[b-xcwhbkmqkf] .signout-link {
    color: #e74c3c;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid #e74c3c;
}

[b-xcwhbkmqkf] .signout-link:hover {
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
}

[b-xcwhbkmqkf] .login-prompt {
    color: #ecf0f1;
    font-weight: 500;
    margin: 0;
    margin-right: 1rem;
    display: inline-block;
}

[b-xcwhbkmqkf] .signin-link {
    color: #27ae60;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid #27ae60;
    font-weight: 500;
}

[b-xcwhbkmqkf] .signin-link:hover {
    background-color: #27ae60;
    color: white;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    [b-xcwhbkmqkf] .top-bar {
        padding: 0.5rem 1rem;
    }
    
    [b-xcwhbkmqkf] .top-bar p,
    [b-xcwhbkmqkf] .welcome-text,
    [b-xcwhbkmqkf] .login-prompt {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    [b-xcwhbkmqkf] .top-bar a,
    [b-xcwhbkmqkf] .profile-link,
    [b-xcwhbkmqkf] .signout-link,
    [b-xcwhbkmqkf] .signin-link {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.25rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-c73y6963bo] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-bar[b-c73y6963bo] {
    background-color: #34495e;
    color: white;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

main[b-c73y6963bo] {
    flex: 1;
}

.sidebar[b-c73y6963bo] {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, #212529 0%, #343a40 100%);
    color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
}

.top-row[b-c73y6963bo] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-c73y6963bo]  a, .top-row[b-c73y6963bo]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-c73y6963bo]  a:hover, .top-row[b-c73y6963bo]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-c73y6963bo]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-c73y6963bo] {
        justify-content: space-between;
    }

    .top-row[b-c73y6963bo]  a, .top-row[b-c73y6963bo]  .btn-link {
        margin-left: 0;
    }
    
    .top-bar[b-c73y6963bo] {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1rem;
    }
}

@media (min-width: 641px) {
    .page[b-c73y6963bo] {
        flex-direction: row;
    }

    .sidebar[b-c73y6963bo] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-c73y6963bo] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-c73y6963bo]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-c73y6963bo], article[b-c73y6963bo] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
        
    }
}

#blazor-error-ui[b-c73y6963bo] {
    background: #dc3545;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: white;
}

    #blazor-error-ui .dismiss[b-c73y6963bo] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Layout Container */
.layout-container[b-c73y6963bo] {
    display: flex;
    min-height: 100vh;
    background-color: #212529;
}

/* Main Content Area */
.main-content[b-c73y6963bo] {
    flex: 1;
    margin-left: 280px;
    /* Allow flex item to shrink so inner scroll containers can appear */
    min-width: 0;
    min-height: 0;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
    background-color: #212529;
    color: #fff;
}

/* Ensure the article (flex child) can shrink and delegate scrolling to its children */
.main-content > article[b-c73y6963bo] {
    min-width: 0;
    min-height: 0;
    /* Prevent content from bleeding outside; inner components manage their own scroll */
    overflow: hidden;
}

.content[b-c73y6963bo] {
    flex: 1;
    padding: 2rem;
    background-color: #212529;
    min-height: calc(100vh);
}

/* Responsive adjustments for collapsed sidebar */
.sidebar.collapsed + .main-content[b-c73y6963bo] {
    margin-left: 70px;
}






/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Sidebar Navigation Styles - Bootstrap 5 Dark Theme */
.sidebar[b-302so0vi64] {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, #212529 0%, #343a40 100%);
    color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
}

.sidebar.collapsed[b-302so0vi64] {
    width: 70px;
}

.sidebar.collapsed .nav-link span[b-302so0vi64] {
    display: none;
}

.sidebar-logo[b-302so0vi64] {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-image[b-302so0vi64] {
    max-width: 180px;
    height: auto;
}

.sidebar.collapsed .logo-image[b-302so0vi64] {
    max-width: 40px;
}

.nav-menu[b-302so0vi64] {
    list-style: none;
    padding: 1rem 1rem 1rem 1rem;
    margin: 0;
    align-items: center;
}

.nav-menu-container[b-302so0vi64] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-menu-container[b-302so0vi64]::-webkit-scrollbar {
    width: 8px;
}

.nav-menu-container[b-302so0vi64]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu-container[b-302so0vi64]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.nav-menu-container[b-302so0vi64]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nav-item[b-302so0vi64] {
    margin: 1rem 0;
}

.nav-link[b-302so0vi64] {
    display: flex;
    align-items: center;
    padding: 0rem 0rem 0.75rem 0rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
}

.nav-link:hover[b-302so0vi64] {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active[b-302so0vi64] {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-left: 3px solid #0d6efd;
}

.nav-link i[b-302so0vi64] {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar.collapsed .nav-link[b-302so0vi64] {
    justify-content: center;
    /* padding: 0.75rem; */
}

.sidebar.collapsed .nav-link i[b-302so0vi64] {
    margin-right: 0;
}

.nav-link span[b-302so0vi64] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Administration Menu Styles */
.admin-submenu[b-302so0vi64] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-submenu .nav-item[b-302so0vi64] {
    margin: 1rem 0;
}

.admin-submenu .nav-link[b-302so0vi64] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Admin menu dropdown toggle styling */
.nav-item.dropdown .nav-link.dropdown-toggle[b-302so0vi64] {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: normal !important;
}

.sidebar-footer[b-302so0vi64] {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

/* Center the version string inside the footer */
.sidebar-footer .version[b-302so0vi64] {
    text-align: center;
    width: 100%;
    display: block;
}

.user-section[b-302so0vi64] {
    margin-bottom: 1rem;
}

.user-link[b-302so0vi64],
.signout-link[b-302so0vi64] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.user-link:hover[b-302so0vi64],
.signout-link:hover[b-302so0vi64] {
    color: #fff;
}

.user-link i[b-302so0vi64],
.signout-link i[b-302so0vi64] {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.user-section .user-link[b-302so0vi64] {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.5rem 1.25rem;
}

.user-section .user-link:hover[b-302so0vi64] {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.user-section .signout-link[b-302so0vi64] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.5rem 1.25rem;
}

.user-section .signout-link:hover[b-302so0vi64] {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ensure ThemeToggle sits inline with Sign Out and doesn't break layout */
.signout-row[b-302so0vi64] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-theme-toggle .btn[b-302so0vi64] {
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
}

.sidebar-toggle[b-302so0vi64] {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: calc(100% - 2.5rem);
    margin: 0 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-toggle:hover[b-302so0vi64] {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-toggle i[b-302so0vi64] {
    transition: transform 0.3s ease;
}

.sidebar.collapsed .sidebar-toggle i[b-302so0vi64] {
    transform: rotate(180deg);
}

/* Collapsed state adjustments */
.sidebar.collapsed .user-link span[b-302so0vi64],
.sidebar.collapsed .signout-link span[b-302so0vi64] {
    display: none;
}

.sidebar.collapsed .user-link[b-302so0vi64],
.sidebar.collapsed .signout-link[b-302so0vi64] {
    justify-content: center;
    padding: 0.75rem;
}

.sidebar.collapsed .user-link i[b-302so0vi64],
.sidebar.collapsed .signout-link i[b-302so0vi64] {
    margin-right: 0;
}

.sidebar.collapsed .sidebar-toggle[b-302so0vi64] {
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem;
}
/* /Components/Pages/AcceptInvitation.razor.rz.scp.css */
[b-kp4wctzy42] .eg-card {
    margin-bottom: 2rem;
}

[b-kp4wctzy42] .eg-card .card-header {
    padding: 1.5rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.bg-success[b-kp4wctzy42] {
    background: linear-gradient(
        135deg,
        rgba(40, 167, 69, 0.2) 0%,
        rgba(40, 167, 69, 0.1) 100%
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.bg-danger[b-kp4wctzy42] {
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.2) 0%,
        rgba(220, 53, 69, 0.1) 100%
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.bg-warning[b-kp4wctzy42] {
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.2) 0%,
        rgba(255, 193, 7, 0.1) 100%
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffc107 !important;
}

.bg-info[b-kp4wctzy42] {
    background: linear-gradient(
        135deg,
        rgba(13, 202, 240, 0.2) 0%,
        rgba(13, 202, 240, 0.1) 100%
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #0dcaf0 !important;
}

.alert[b-kp4wctzy42] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.alert-success[b-kp4wctzy42] {
    border-color: rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.alert-danger[b-kp4wctzy42] {
    border-color: rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.alert-warning[b-kp4wctzy42] {
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.alert-info[b-kp4wctzy42] {
    border-color: rgba(13, 202, 240, 0.3);
    color: #0dcaf0;
}
/* /Components/Pages/AccessDenied.razor.rz.scp.css */
.access-denied-container[b-ej9kfi2oo0] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
}

.access-denied-card[b-ej9kfi2oo0] {
    text-align: center;
    max-width: 500px;
    padding: 3rem;
    background: var(--bs-body-bg, #fff);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.access-denied-icon[b-ej9kfi2oo0] {
    font-size: 5rem;
    color: var(--bs-danger, #dc3545);
    margin-bottom: 1.5rem;
}

.access-denied-icon i[b-ej9kfi2oo0] {
    display: inline-block;
    animation: shake-b-ej9kfi2oo0 0.5s ease-in-out;
}

@keyframes shake-b-ej9kfi2oo0 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.access-denied-card h1[b-ej9kfi2oo0] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bs-heading-color, #212529);
}

.access-denied-card .lead[b-ej9kfi2oo0] {
    font-size: 1.1rem;
    color: var(--bs-secondary, #6c757d);
    margin-bottom: 1.5rem;
}

.access-denied-details[b-ej9kfi2oo0] {
    padding: 1rem;
    background: var(--bs-tertiary-bg, #f8f9fa);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.access-denied-details p[b-ej9kfi2oo0] {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.access-denied-actions[b-ej9kfi2oo0] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.access-denied-actions .btn[b-ej9kfi2oo0] {
    min-width: 150px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .access-denied-card[b-ej9kfi2oo0] {
        background: #1a1a2e;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .access-denied-details[b-ej9kfi2oo0] {
        background: #16213e;
    }
}
/* /Components/Pages/Admin/AdminDashboard.razor.rz.scp.css */
.admin-dashboard[b-20hn7ucy58] {
    padding: 1rem;
}

.admin-dashboard h1[b-20hn7ucy58] {
    color: #fff;
    margin-bottom: 0.5rem;
}

[b-20hn7ucy58] .eg-card {
    height: 100%;
}

.stats-number[b-20hn7ucy58] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #fff;
}

[b-20hn7ucy58] .eg-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

[b-20hn7ucy58] .eg-card-header h5 {
    color: #fff;
    margin: 0;
}

[b-20hn7ucy58] .eg-card-body {
    padding: 1.5rem;
}

.list-group-item[b-20hn7ucy58] {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    transition: background-color 0.2s;
}

.list-group-item:hover[b-20hn7ucy58] {
    background-color: rgba(255, 255, 255, 0.05);
}

.list-group-item h6[b-20hn7ucy58] {
    color: #fff;
}

.badge.bg-primary[b-20hn7ucy58] {
    background-color: rgba(0, 123, 255, 0.2) !important;
    border: 1px solid rgba(0, 123, 255, 0.3);
    color: #007bff;
}

.badge.bg-info[b-20hn7ucy58] {
    background-color: rgba(13, 202, 240, 0.2) !important;
    border: 1px solid rgba(13, 202, 240, 0.3);
    color: #0dcaf0;
}

.badge.bg-success[b-20hn7ucy58] {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}
/* /Components/Pages/Admin/Billing.razor.rz.scp.css */
.billing-page[b-3g9n156cy1] {
    padding: 1rem;
}

.billing-page h1[b-3g9n156cy1] {
    color: #fff;
    margin-bottom: 0.5rem;
}

.text-muted[b-3g9n156cy1] {
    color: rgba(255, 255, 255, 0.5) !important;
}

[b-3g9n156cy1] .eg-card .card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

[b-3g9n156cy1] .eg-card .card-header h5 {
    color: #fff;
    margin: 0;
}

.subscription-detail label[b-3g9n156cy1] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscription-detail h3[b-3g9n156cy1], .subscription-detail p[b-3g9n156cy1] {
    color: #fff;
}

.badge.bg-primary[b-3g9n156cy1] {
    background-color: rgba(0, 123, 255, 0.2) !important;
    border: 1px solid rgba(0, 123, 255, 0.3);
    color: #007bff;
}

.badge.bg-success[b-3g9n156cy1] {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.badge.bg-info[b-3g9n156cy1] {
    background-color: rgba(13, 202, 240, 0.2) !important;
    border: 1px solid rgba(13, 202, 240, 0.3);
    color: #0dcaf0;
}

.badge.bg-warning[b-3g9n156cy1] {
    background-color: rgba(255, 193, 7, 0.2) !important;
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.form-control[b-3g9n156cy1], .form-select[b-3g9n156cy1], .input-group-text[b-3g9n156cy1] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus[b-3g9n156cy1], .form-select:focus[b-3g9n156cy1] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bs-primary);
    color: #fff;
}

.form-label[b-3g9n156cy1] {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Cards */
.pricing-card[b-3g9n156cy1] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    color: #fff;
}

.pricing-card:hover[b-3g9n156cy1] {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured[b-3g9n156cy1] {
    border: 2px solid #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.pricing-card.current[b-3g9n156cy1] {
    border: 2px solid #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.pricing-badge[b-3g9n156cy1] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h4[b-3g9n156cy1] {
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-amount[b-3g9n156cy1] {
    margin-bottom: 2rem;
}

.pricing-amount .price[b-3g9n156cy1] {
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-amount .period[b-3g9n156cy1] {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features[b-3g9n156cy1] {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li[b-3g9n156cy1] {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Usage Stats */
.progress[b-3g9n156cy1] {
    background-color: rgba(255, 255, 255, 0.1);
}

.usage-stat span[b-3g9n156cy1] {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Accordion */
.accordion-item[b-3g9n156cy1] {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-button[b-3g9n156cy1] {
    background: transparent;
    color: #fff;
}

.accordion-button:not(.collapsed)[b-3g9n156cy1] {
    background: rgba(255, 255, 255, 0.05);
    color: #007bff;
}

.accordion-body[b-3g9n156cy1] {
    color: rgba(255, 255, 255, 0.7);
}
    background: var(--bs-primary, #0d6efd);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;[b-3g9n156cy1]
}

.pricing-header[b-3g9n156cy1] {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.pricing-header h4[b-3g9n156cy1] {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-amount[b-3g9n156cy1] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount .price[b-3g9n156cy1] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-dark, #212529);
}

.pricing-amount .period[b-3g9n156cy1] {
    font-size: 0.875rem;
    color: var(--bs-secondary, #6c757d);
}

.pricing-features[b-3g9n156cy1] {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li[b-3g9n156cy1] {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features li i[b-3g9n156cy1] {
    font-size: 1rem;
}

/* Usage Stats */
.usage-stat[b-3g9n156cy1] {
    padding: 0.5rem 0;
}

.usage-stat .progress[b-3g9n156cy1] {
    background-color: #e9ecef;
}

.usage-stat .progress-bar[b-3g9n156cy1] {
    background: linear-gradient(90deg, var(--bs-primary) 0%, #0dcaf0 100%);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed)[b-3g9n156cy1] {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--bs-primary);
}

.accordion-button:focus[b-3g9n156cy1] {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.accordion-body[b-3g9n156cy1] {
    font-size: 0.9rem;
    color: var(--bs-secondary);
}

/* Billing Cycle Toggle */
.btn-group .btn-outline-primary:hover[b-3g9n156cy1] {
    background-color: var(--bs-primary);
    color: white;
}

.btn-check:checked + .btn-outline-primary[b-3g9n156cy1] {
    background-color: var(--bs-primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-amount .price[b-3g9n156cy1] {
        font-size: 2rem;
    }
    
    .billing-page .d-flex.justify-content-between[b-3g9n156cy1] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .subscription-detail[b-3g9n156cy1] {
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .subscription-detail:last-child[b-3g9n156cy1] {
        border-bottom: none;
    }
}
/* /Components/Pages/Admin/EmailSchedules.razor.rz.scp.css */
.admin-management[b-z8slh2j5hv] {
    color: var(--color-text-light, #e9ecef);
}

.admin-management h1[b-z8slh2j5hv] {
    color: var(--color-primary, #007bff); /* standard blue title color */
}

.admin-management h5[b-z8slh2j5hv],
.admin-management .card-header h5[b-z8slh2j5hv] {
    color: var(--color-primary, #007bff);
}

.admin-management .eg-card[b-z8slh2j5hv] {
    background-color: rgba(33, 37, 41, 0.85); /* dark card */
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-management .card-body[b-z8slh2j5hv],
.admin-management .table-responsive[b-z8slh2j5hv] {
    background: transparent;
    color: var(--color-text-light, #e9ecef);
}

/* Table header and row colors to match app theme */
.admin-management table.table thead th[b-z8slh2j5hv] {
    color: var(--color-primary, #007bff);
    background: transparent;
    border-bottom: 1px solid
        var(--color-border-subtle, rgba(255, 255, 255, 0.08));
    font-weight: 700;
}

.admin-management table.table tbody td[b-z8slh2j5hv] {
    color: var(--color-text-light, #e9ecef);
    border-bottom: 1px solid
        var(--color-border-subtle, rgba(255, 255, 255, 0.08));
}

.admin-management table.table tbody td small[b-z8slh2j5hv],
.admin-management table.table tbody td .text-muted[b-z8slh2j5hv] {
    color: var(--color-text-muted, rgba(255, 255, 255, 0.7));
}

.admin-management table.table.table-hover tbody tr:hover[b-z8slh2j5hv] {
    background-color: var(--color-surface-subtle, rgba(255, 255, 255, 0.03));
}

.admin-management .btn-primary[b-z8slh2j5hv] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.admin-management .btn-outline-primary[b-z8slh2j5hv] {
    color: #cfe2ff;
    border-color: rgba(255, 255, 255, 0.06);
}

/* Dark modal overrides for Edit Schedule modal */
.admin-management .modal .modal-content[b-z8slh2j5hv] {
    background-color: var(--color-surface-dark, rgba(33, 37, 41, 0.95));
    color: var(--color-text-light, #ffffff);
    border: 1px solid var(--color-border-light, rgba(255, 255, 255, 0.1));
    border-radius: 8px;
}

.admin-management .modal .modal-header[b-z8slh2j5hv],
.admin-management .modal .modal-body[b-z8slh2j5hv],
.admin-management .modal .modal-footer[b-z8slh2j5hv] {
    background: transparent;
    color: var(--color-text-light, #ffffff);
}

.admin-management .modal .form-control[b-z8slh2j5hv],
.admin-management .modal .form-select[b-z8slh2j5hv] {
    background-color: var(--color-surface-subtle, rgba(255, 255, 255, 0.05));
    color: var(--color-text-light, #ffffff);
    border: 1px solid var(--color-border-subtle, rgba(255, 255, 255, 0.08));
}

.admin-management .modal .form-control:focus[b-z8slh2j5hv],
.admin-management .modal .form-select:focus[b-z8slh2j5hv] {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--color-text-light, #ffffff);
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.admin-management .modal-backdrop.show[b-z8slh2j5hv] {
    background-color: rgba(0, 0, 0, 0.6);
}

.admin-management .btn-close[b-z8slh2j5hv] {
    filter: invert(1) brightness(1.2);
}
/* /Components/Pages/Admin/OrganizationManagement.razor.rz.scp.css */
.admin-management[b-d7tj8zq2gz] {
    padding: 1rem;
}

.admin-management h1[b-d7tj8zq2gz] {
    color: #fff;
    margin-bottom: 0.5rem;
}

.table[b-d7tj8zq2gz] {
    color: rgba(255, 255, 255, 0.8);
}

.table thead th[b-d7tj8zq2gz] {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.table tbody td[b-d7tj8zq2gz] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover[b-d7tj8zq2gz] {
    background-color: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.text-muted[b-d7tj8zq2gz] {
    color: rgba(255, 255, 255, 0.5) !important;
}

.badge.bg-info[b-d7tj8zq2gz] {
    background-color: rgba(13, 202, 240, 0.2) !important;
    border: 1px solid rgba(13, 202, 240, 0.3);
    color: #0dcaf0;
}

.badge.bg-success[b-d7tj8zq2gz] {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.badge.bg-danger[b-d7tj8zq2gz] {
    background-color: rgba(220, 53, 69, 0.2) !important;
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* Modal Styling */
.modal-content[b-d7tj8zq2gz] {
    background: rgba(30, 30, 45, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 16px;
}

.modal-header[b-d7tj8zq2gz] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer[b-d7tj8zq2gz] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control[b-d7tj8zq2gz],
.form-select[b-d7tj8zq2gz] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus[b-d7tj8zq2gz],
.form-select:focus[b-d7tj8zq2gz] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bs-primary);
    color: #fff;
}

.form-label[b-d7tj8zq2gz] {
    color: rgba(255, 255, 255, 0.8);
}

/* Backdrop and close button tweaks for dark modals */
.modal-backdrop.show[b-d7tj8zq2gz] {
    background-color: rgba(0, 0, 0, 0.6);
}

.btn-close[b-d7tj8zq2gz] {
    filter: invert(1) brightness(1.2);
}
/* /Components/Pages/Admin/OrganizationSettings.razor.rz.scp.css */
.admin-management[b-c0m1mzgl9h] {
    padding: 1rem;
}

h1[b-c0m1mzgl9h] {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.text-muted[b-c0m1mzgl9h] {
    color: rgba(255, 255, 255, 0.6) !important;
}

[b-c0m1mzgl9h] .eg-card {
    height: 100%;
}

[b-c0m1mzgl9h] .eg-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
}

[b-c0m1mzgl9h] .eg-card-header h5 {
    color: #fff;
    font-weight: 600;
}

[b-c0m1mzgl9h] .eg-card-body {
    padding: 1.5rem;
}

.form-label[b-c0m1mzgl9h] {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control[b-c0m1mzgl9h] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus[b-c0m1mzgl9h] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.form-control-plaintext[b-c0m1mzgl9h] {
    color: #fff;
}

hr[b-c0m1mzgl9h] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.badge[b-c0m1mzgl9h] {
    padding: 0.5em 0.8em;
    font-weight: 500;
}

.alert[b-c0m1mzgl9h] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.alert-success[b-c0m1mzgl9h] {
    border-left: 4px solid #28a745;
}

.alert-danger[b-c0m1mzgl9h] {
    border-left: 4px solid #dc3545;
}

.alert-warning[b-c0m1mzgl9h] {
    border-left: 4px solid #ffc107;
}
/* /Components/Pages/Admin/OrgUserManagement.razor.rz.scp.css */
.admin-management[b-x7j0xqn3su] {
    padding: 1rem;
}

h1[b-x7j0xqn3su] {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.text-muted[b-x7j0xqn3su] {
    color: rgba(255, 255, 255, 0.6) !important;
}

[b-x7j0xqn3su] .eg-card {
    height: 100%;
}

[b-x7j0xqn3su] .eg-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
}

[b-x7j0xqn3su] .eg-card-header h5 {
    color: #fff;
    font-weight: 600;
}

[b-x7j0xqn3su] .eg-card-body {
    padding: 1.5rem;
}

/* Table Styles */
.table[b-x7j0xqn3su] {
    color: #fff;
    margin-bottom: 0;
}

.table thead th[b-x7j0xqn3su] {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.table tbody td[b-x7j0xqn3su] {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.table-hover tbody tr:hover[b-x7j0xqn3su] {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

/* Form Controls in Table */
.form-select-sm[b-x7j0xqn3su] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-select-sm:focus[b-x7j0xqn3su] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

/* Progress Bar */
.progress[b-x7j0xqn3su] {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Modal Styles */
.modal-content[b-x7j0xqn3su] {
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-header[b-x7j0xqn3su] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer[b-x7j0xqn3su] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close[b-x7j0xqn3su] {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Alerts */
.alert[b-x7j0xqn3su] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.alert-success[b-x7j0xqn3su] {
    border-left: 4px solid #28a745;
}

.alert-danger[b-x7j0xqn3su] {
    border-left: 4px solid #dc3545;
}

.alert-warning[b-x7j0xqn3su] {
    border-left: 4px solid #ffc107;
}

.border-warning[b-x7j0xqn3su] {
    border: 1px solid #ffc107 !important;
}

.border-danger[b-x7j0xqn3su] {
    border: 1px solid #dc3545 !important;
}
/* /Components/Pages/Admin/SuperAdminManagement.razor.rz.scp.css */
.admin-management[b-6ouk554r1v] {
    padding: 1rem;
}

.admin-management h1[b-6ouk554r1v] {
    color: #fff;
    margin-bottom: 0.5rem;
}

.text-muted[b-6ouk554r1v] {
    color: rgba(255, 255, 255, 0.5) !important;
}

.list-group-item[b-6ouk554r1v] {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    transition: background-color 0.2s;
}

.list-group-item:hover[b-6ouk554r1v] {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.list-group-item strong[b-6ouk554r1v] {
    color: #fff;
}

.form-control[b-6ouk554r1v] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus[b-6ouk554r1v] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bs-primary);
    color: #fff;
}

.form-label[b-6ouk554r1v] {
    color: rgba(255, 255, 255, 0.8);
}

[b-6ouk554r1v] .eg-card .card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

[b-6ouk554r1v] .eg-card .card-header h5 {
    color: #fff;
    margin: 0;
}

.alert-success[b-6ouk554r1v] {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.alert-danger[b-6ouk554r1v] {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}
/* /Components/Pages/Admin/UserManagement.razor.rz.scp.css */
.admin-management[b-cejebhxvpa] {
    padding: 1rem;
}

.admin-management h1[b-cejebhxvpa] {
    color: #fff;
    margin-bottom: 0.5rem;
}

.table[b-cejebhxvpa] {
    color: rgba(255, 255, 255, 0.8);
}

.table thead th[b-cejebhxvpa] {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.table tbody td[b-cejebhxvpa] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover[b-cejebhxvpa] {
    background-color: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.text-muted[b-cejebhxvpa] {
    color: rgba(255, 255, 255, 0.5) !important;
}

code[b-cejebhxvpa] {
    background-color: rgba(255, 255, 255, 0.05);
    color: #0dcaf0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.badge.bg-info[b-cejebhxvpa] {
    background-color: rgba(13, 202, 240, 0.2) !important;
    border: 1px solid rgba(13, 202, 240, 0.3);
    color: #0dcaf0;
}

.badge.bg-success[b-cejebhxvpa] {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.badge.bg-warning[b-cejebhxvpa] {
    background-color: rgba(255, 193, 7, 0.2) !important;
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

/* Modal Styling */
.modal-content[b-cejebhxvpa] {
    background: rgba(30, 30, 45, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 16px;
}

.modal-header[b-cejebhxvpa] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer[b-cejebhxvpa] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control[b-cejebhxvpa],
.form-select[b-cejebhxvpa] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus[b-cejebhxvpa],
.form-select:focus[b-cejebhxvpa] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bs-primary);
    color: #fff;
}

.form-label[b-cejebhxvpa] {
    color: rgba(255, 255, 255, 0.8);
}

[b-cejebhxvpa] .eg-card .card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

[b-cejebhxvpa] .eg-card .card-header h6 {
    color: #fff;
    margin: 0;
}
/* /Components/Pages/Admin/UserOrganizationManagement.razor.rz.scp.css */
.admin-management[b-yvdi03buvh] {
    padding: 1rem;
}

h1[b-yvdi03buvh] {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.text-muted[b-yvdi03buvh] {
    color: rgba(255, 255, 255, 0.6) !important;
}

[b-yvdi03buvh] .eg-card {
    height: 100%;
}

[b-yvdi03buvh] .eg-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
}

[b-yvdi03buvh] .eg-card-header h5 {
    color: #fff;
    font-weight: 600;
}

[b-yvdi03buvh] .eg-card-body {
    padding: 1.5rem;
}

/* Table Styles */
.table[b-yvdi03buvh] {
    color: #fff;
    margin-bottom: 0;
}

.table thead th[b-yvdi03buvh] {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.table tbody td[b-yvdi03buvh] {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.table-hover tbody tr:hover[b-yvdi03buvh] {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

/* Modal Styles */
.modal-content[b-yvdi03buvh] {
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-header[b-yvdi03buvh] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer[b-yvdi03buvh] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close[b-yvdi03buvh] {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.form-label[b-yvdi03buvh] {
    color: rgba(255, 255, 255, 0.7);
}

.form-select[b-yvdi03buvh] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-select:focus[b-yvdi03buvh] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

/* Alerts */
.alert[b-yvdi03buvh] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.alert-success[b-yvdi03buvh] {
    border-left: 4px solid #28a745;
}

.alert-danger[b-yvdi03buvh] {
    border-left: 4px solid #dc3545;
}
/* /Components/Pages/CreateEntity.razor.rz.scp.css */
/* ===================================================================
   CreateEntity Page Styles
   All styles specific to the CreateEntity component
   =================================================================== */

/* Page Container */
.container-lg[b-z44j19b6r1] {
    max-width: 1400px;
}

.page-heading[b-z44j19b6r1] {
    color: var(--color-text-light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Form Container */
.form-container[b-z44j19b6r1] {
    background: var(--color-surface-dark);
    color: var(--color-text-light);
    border: 1px solid var(--color-border-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    border-radius: 6px;
    padding: 2rem;
}

/* Form Labels */
.form-container .form-label[b-z44j19b6r1] {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Form Controls (Inputs and Selects) */
.form-container .form-control[b-z44j19b6r1],
.form-container .form-select[b-z44j19b6r1] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    padding: 0.6rem 0.75rem;
}

.form-container .form-select option[b-z44j19b6r1] {
    background-color: #212529;
    color: var(--color-text-light);
}

.form-container .form-control[b-z44j19b6r1]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Focus States */
.form-container .form-control:focus[b-z44j19b6r1],
.form-container .form-select:focus[b-z44j19b6r1] {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Checkboxes */
.form-container .form-check-label[b-z44j19b6r1] {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.form-container .form-check-input[b-z44j19b6r1] {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 0.35rem;
}

.form-container .form-check-input:checked[b-z44j19b6r1] {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Form Sections */
.entity-form-section[b-z44j19b6r1] {
    margin-bottom: 2.5rem;
}

.entity-form-section-title[b-z44j19b6r1] {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 123, 255, 0.3);
}

/* Buttons */
.form-container .btn[b-z44j19b6r1] {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
}

.form-container .btn-primary[b-z44j19b6r1] {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-container .btn-primary:hover[b-z44j19b6r1] {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.form-container .btn-outline-info[b-z44j19b6r1] {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-container .btn-outline-info:hover[b-z44j19b6r1] {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* List Groups (for FinCEN contacts) */
.form-container .list-group-item[b-z44j19b6r1] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.form-container .text-muted[b-z44j19b6r1] {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Address Card Container - Responsive flex layout */
.eg-card-container.row[b-z44j19b6r1] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    /* Override Bootstrap row margins */
    margin-left: 0;
    margin-right: 0;
}

.eg-card-container.row > .col-md-4[b-z44j19b6r1] {
    flex: 1 1 300px; /* Allow cards to grow, shrink, with min width of 300px */
    min-width: 300px;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.address-card[b-z44j19b6r1] {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.address-title[b-z44j19b6r1] {
    color: var(--color-primary);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Address copy buttons */
.address-copy-buttons[b-z44j19b6r1] {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .eg-card-container.row > .col-md-4[b-z44j19b6r1] {
        flex: 1 1 45%; /* Two columns on tablets */
    }
}

@media (max-width: 768px) {
    .page-heading[b-z44j19b6r1] {
        font-size: 2rem;
    }

    .form-container[b-z44j19b6r1] {
        padding: 1.5rem;
    }

    .eg-card-container.row[b-z44j19b6r1] {
        gap: 1rem;
    }

    .eg-card-container.row > .col-md-4[b-z44j19b6r1] {
        flex: 1 1 100%; /* Single column on mobile */
        min-width: 100%;
    }

    .address-card[b-z44j19b6r1] {
        padding: 1rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home.razor.css - Scoped styles for the Dashboard Home page */

.dashboard-container[b-kpkicgefyz] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.dashboard-header[b-kpkicgefyz] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content .dashboard-title[b-kpkicgefyz] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-content .dashboard-title i[b-kpkicgefyz] {
    color: #007bff;
    font-size: 2.2rem;
}

.dashboard-subtitle[b-kpkicgefyz] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

.dashboard-actions[b-kpkicgefyz] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.action-btn[b-kpkicgefyz] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn:hover[b-kpkicgefyz] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.action-btn i[b-kpkicgefyz] {
    font-size: 1.1rem;
}

/* Loading State */
.loading-container[b-kpkicgefyz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-container .spinner-border[b-kpkicgefyz] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.loading-container p[b-kpkicgefyz] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0;
}

/* Metrics Grid */
.metrics-grid[b-kpkicgefyz] {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .metrics-grid[b-kpkicgefyz] {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.metric-card[b-kpkicgefyz] {
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.metric-card.clickable[b-kpkicgefyz] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.metric-card.clickable:hover[b-kpkicgefyz] {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.3);
}

.metric-card.clickable:active[b-kpkicgefyz] {
    transform: translateY(-2px);
}

.metric-card[b-kpkicgefyz]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6610f2);
}

.metric-card.total[b-kpkicgefyz]::before {
    background: linear-gradient(90deg, #007bff, #0056b3);
}
.metric-card.overdue[b-kpkicgefyz]::before {
    background: linear-gradient(90deg, #dc3545, #b02a37);
}
.metric-card.compliant[b-kpkicgefyz]::before {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}
.metric-card.due-soon[b-kpkicgefyz]::before {
    background: linear-gradient(90deg, #ffc107, #e0a800);
}

.metric-card.warning[b-kpkicgefyz]::before {
    background: linear-gradient(90deg, #fd7e14, #e8680d);
}
.metric-card.success[b-kpkicgefyz]::before {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.metric-icon[b-kpkicgefyz] {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.metric-content h3[b-kpkicgefyz] {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.metric-label[b-kpkicgefyz] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.25rem 0 0.5rem 0;
    font-weight: 500;
}

.metric-change[b-kpkicgefyz] {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.metric-change.positive[b-kpkicgefyz] {
    color: #28a745;
}

.metric-change.negative[b-kpkicgefyz] {
    color: #dc3545;
}

.metric-change.info[b-kpkicgefyz] {
    color: #17a2b8;
}

.metric-change i[b-kpkicgefyz] {
    font-size: 0.9rem;
}

/* Charts Section */
.charts-section[b-kpkicgefyz] {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.chart-container[b-kpkicgefyz] {
    padding: 1.5rem;
}

.chart-header[b-kpkicgefyz] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.chart-header h4[b-kpkicgefyz] {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.chart-subtitle[b-kpkicgefyz] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

.chart-legend[b-kpkicgefyz] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.legend-item[b-kpkicgefyz] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.legend-color[b-kpkicgefyz] {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.chart-wrapper[b-kpkicgefyz] {
    height: 300px;
    position: relative;
}

/* Bottom Section */
.dashboard-bottom[b-kpkicgefyz] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.recent-activity[b-kpkicgefyz],
.quick-actions[b-kpkicgefyz] {
    padding: 1.5rem;
}

.section-header[b-kpkicgefyz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.section-header h4[b-kpkicgefyz] {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.activity-list[b-kpkicgefyz] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.activity-item[b-kpkicgefyz] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.activity-item:hover[b-kpkicgefyz] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.activity-icon[b-kpkicgefyz] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.activity-content[b-kpkicgefyz] {
    flex: 1;
}

.activity-text[b-kpkicgefyz] {
    margin: 0 0 0.25rem 0;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.activity-time[b-kpkicgefyz] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.activity-action[b-kpkicgefyz] {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.activity-action:hover[b-kpkicgefyz] {
    background: rgba(255, 255, 255, 0.1);
}

.empty-state[b-kpkicgefyz] {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state i[b-kpkicgefyz] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.empty-state p[b-kpkicgefyz] {
    margin: 0;
    font-size: 0.9rem;
}

.action-buttons[b-kpkicgefyz] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn.primary[b-kpkicgefyz] {
    border-left: 3px solid #007bff;
}
.action-btn.success[b-kpkicgefyz] {
    border-left: 3px solid #28a745;
}
.action-btn.info[b-kpkicgefyz] {
    border-left: 3px solid #17a2b8;
}
.action-btn.secondary[b-kpkicgefyz] {
    border-left: 3px solid #6c757d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-header[b-kpkicgefyz] {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .charts-section[b-kpkicgefyz] {
        grid-template-columns: 1fr;
    }

    .dashboard-bottom[b-kpkicgefyz] {
        grid-template-columns: 1fr;
    }

    .metrics-grid[b-kpkicgefyz] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .dashboard-container[b-kpkicgefyz] {
        padding: 1rem;
    }

    .dashboard-title[b-kpkicgefyz] {
        font-size: 2rem;
    }

    .dashboard-subtitle[b-kpkicgefyz] {
        font-size: 1rem;
    }

    .dashboard-actions[b-kpkicgefyz] {
        flex-direction: column;
        width: 100%;
    }

    .action-btn[b-kpkicgefyz] {
        justify-content: center;
        width: 100%;
    }

    .metrics-grid[b-kpkicgefyz] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-card[b-kpkicgefyz] {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .metric-content h3[b-kpkicgefyz] {
        font-size: 1.75rem;
    }

    .charts-section[b-kpkicgefyz] {
        gap: 1.5rem;
    }

    .chart-container[b-kpkicgefyz] {
        padding: 1rem;
    }

    .chart-legend[b-kpkicgefyz] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .activity-item[b-kpkicgefyz] {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .activity-action[b-kpkicgefyz] {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .dashboard-title[b-kpkicgefyz] {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .metric-content h3[b-kpkicgefyz] {
        font-size: 1.5rem;
    }

    .chart-wrapper[b-kpkicgefyz] {
        height: 250px;
    }
}

/* Dark theme overrides for better contrast */
[data-bs-theme="dark"] .metric-card[b-kpkicgefyz],
[data-bs-theme="dark"] .chart-container[b-kpkicgefyz],
[data-bs-theme="dark"] .recent-activity[b-kpkicgefyz],
[data-bs-theme="dark"] .quick-actions[b-kpkicgefyz] {
    background: linear-gradient(
        135deg,
        rgba(33, 37, 41, 0.8) 0%,
        rgba(52, 58, 64, 0.6) 100%
    );
    border-color: rgba(255, 255, 255, 0.1);
}

/* Animation for loading states */
@keyframes fadeIn-b-kpkicgefyz {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-container > *[b-kpkicgefyz] {
    animation: fadeIn-b-kpkicgefyz 0.5s ease-out;
}

.dashboard-container > *:nth-child(1)[b-kpkicgefyz] {
    animation-delay: 0.1s;
}
.dashboard-container > *:nth-child(2)[b-kpkicgefyz] {
    animation-delay: 0.2s;
}
.dashboard-container > *:nth-child(3)[b-kpkicgefyz] {
    animation-delay: 0.3s;
}
.dashboard-container > *:nth-child(4)[b-kpkicgefyz] {
    animation-delay: 0.4s;
}

/* Chart Dark Theme Overrides */
[b-kpkicgefyz] .e-chart {
    background: #1a1a1a !important;
    border-radius: 8px;
}

[b-kpkicgefyz] .e-chart text {
    fill: rgba(255, 255, 255, 0.9) !important;
}

[b-kpkicgefyz] .e-chart .e-axis-label {
    fill: rgba(255, 255, 255, 0.8) !important;
}

[b-kpkicgefyz] .e-chart .e-axis-title {
    fill: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
}

[b-kpkicgefyz] .e-chart .e-legend-text {
    fill: rgba(255, 255, 255, 0.9) !important;
}

[b-kpkicgefyz] .e-chart .e-chart-tooltip {
    background: rgba(33, 37, 41, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

[b-kpkicgefyz] .e-chart .e-chart-tooltip text {
    fill: #ffffff !important;
}

/* Enhanced chart styling with dark theme colors */
[b-kpkicgefyz] .e-chart .e-series path {
    stroke: #007bff !important;
    fill: #007bff !important;
}

[b-kpkicgefyz] .e-chart .e-column {
    stroke-width: 2px !important;
    stroke: rgba(255, 255, 255, 0.3) !important;
}

/* Specific colors for compliance chart categories */
[b-kpkicgefyz] .e-chart .e-series:nth-child(1) path {
    fill: #dc3545 !important; /* Red for overdue */
}

[b-kpkicgefyz] .e-chart .e-series:nth-child(2) path {
    fill: #ffc107 !important; /* Yellow for due soon */
}

[b-kpkicgefyz] .e-chart .e-series:nth-child(3) path {
    fill: #28a745 !important; /* Green for upcoming */
}

/* Blue colors for due dates chart */
[b-kpkicgefyz] .e-chart .e-column[fill="#007bff"] {
    fill: #007bff !important;
}

[b-kpkicgefyz] .e-chart .e-column[fill="#007bff"]:hover {
    fill: #0056b3 !important;
}

/* Pie chart specific styling */
[b-kpkicgefyz] .e-chart .e-pie {
    stroke-width: 2px !important;
    stroke: rgba(255, 255, 255, 0.2) !important;
}

[b-kpkicgefyz] .e-chart .e-pie:hover {
    stroke-width: 3px !important;
    stroke: rgba(255, 255, 255, 0.5) !important;
}

/* Grid lines - keep default but style for dark theme */
[b-kpkicgefyz] .e-chart .e-major-gridline {
    stroke: rgba(255, 255, 255, 0.1) !important;
    stroke-width: 1px !important;
}

[b-kpkicgefyz] .e-chart .e-minor-gridline {
    stroke: rgba(255, 255, 255, 0.05) !important;
    stroke-width: 0.5px !important;
}

/* Axis lines */
[b-kpkicgefyz] .e-chart .e-axis-line {
    stroke: rgba(255, 255, 255, 0.3) !important;
    stroke-width: 1px !important;
}

/* Dark theme specific overrides */
[b-kpkicgefyz] .e-chart[data-bs-theme="dark"] {
    background: #1a1a1a !important;
}

[b-kpkicgefyz] .e-chart[data-bs-theme="dark"] .e-axis-label {
    fill: rgba(255, 255, 255, 0.8) !important;
}

[b-kpkicgefyz] .e-chart[data-bs-theme="dark"] .e-axis-title {
    fill: rgba(255, 255, 255, 0.9) !important;
}
/* /Components/Pages/ImportEntities.razor.rz.scp.css */
.page-heading[b-34w64n5kwe] {
    color: #fff;
    font-weight: 700;
}

[b-34w64n5kwe] .eg-card {
    height: 100%;
    margin-bottom: 1.5rem;
}

[b-34w64n5kwe] .eg-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
}

[b-34w64n5kwe] .eg-card-header h5 {
    color: #fff;
    font-weight: 600;
}

[b-34w64n5kwe] .eg-card-body {
    padding: 1.5rem;
}

.text-light[b-34w64n5kwe] {
    color: #fff !important;
}

.opacity-75[b-34w64n5kwe] {
    opacity: 0.75;
}

.form-control[b-34w64n5kwe] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus[b-34w64n5kwe] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.alert[b-34w64n5kwe] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.alert-info[b-34w64n5kwe] {
    border-left: 4px solid #0dcaf0;
}

.alert-warning[b-34w64n5kwe] {
    border-left: 4px solid #ffc107;
}

.alert-success[b-34w64n5kwe] {
    border-left: 4px solid #198754;
}

.alert-danger[b-34w64n5kwe] {
    border-left: 4px solid #dc3545;
}

.stat-card[b-34w64n5kwe] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.stat-card h2[b-34w64n5kwe] {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p[b-34w64n5kwe] {
    margin-bottom: 0;
    opacity: 0.8;
}

.bg-success-glass[b-34w64n5kwe] {
    background: rgba(25, 135, 84, 0.2) !important;
    border-color: rgba(25, 135, 84, 0.3) !important;
}

.bg-danger-glass[b-34w64n5kwe] {
    background: rgba(220, 53, 69, 0.2) !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
}

.bg-info-glass[b-34w64n5kwe] {
    background: rgba(13, 202, 240, 0.2) !important;
    border-color: rgba(13, 202, 240, 0.3) !important;
}

/* Table Styles */
.table[b-34w64n5kwe] {
    color: #fff;
}

.table thead th[b-34w64n5kwe] {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table tbody td[b-34w64n5kwe] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
/* /Components/Pages/Index.razor.rz.scp.css */
.features-grid[b-vxgpsruvun] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card[b-vxgpsruvun] {
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-icon[b-vxgpsruvun] {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3[b-vxgpsruvun] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.feature-card p[b-vxgpsruvun] {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Landing Page Styles - moved from app.css for scoping */
.landing-page[b-vxgpsruvun] {
    min-height: 100vh;
    color: var(--color-text-light);
    background: transparent; /* Let body background show through */
}

.landing-navbar[b-vxgpsruvun] {
    background: rgba(33, 37, 41, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    padding: 1rem 0;
}

.navbar-brand[b-vxgpsruvun] {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-light) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i[b-vxgpsruvun] {
    color: var(--color-primary);
}

.hero-section[b-vxgpsruvun] {
    padding: 8rem 0 6rem;
    background: linear-gradient(
        180deg,
        var(--color-surface-dark) 0%,
        rgba(33, 37, 41, 0.7) 100%
    );
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-content[b-vxgpsruvun] {
    position: relative;
    z-index: 2;
}

.hero-title[b-vxgpsruvun] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #4db8ac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle[b-vxgpsruvun] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-features[b-vxgpsruvun] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item[b-vxgpsruvun] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-item i[b-vxgpsruvun] {
    color: var(--color-primary);
    font-size: 1.25rem;
    background: rgba(0, 123, 255, 0.2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-btn[b-vxgpsruvun] {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
}

.hero-btn:hover[b-vxgpsruvun] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
}

.visual-placeholder[b-vxgpsruvun] {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 24px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-light);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.visual-placeholder[b-vxgpsruvun]::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-primary), #6610f2);
    z-index: -1;
    border-radius: 26px;
    opacity: 0.5;
    filter: blur(10px);
}

.visual-placeholder i[b-vxgpsruvun] {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.3));
}

.features-section[b-vxgpsruvun] {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-title[b-vxgpsruvun] {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--color-text-light);
}

.cta-section[b-vxgpsruvun] {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 123, 255, 0.15) 100%
    );
    position: relative;
}

.cta-content[b-vxgpsruvun] {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--color-border-light);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cta-content h2[b-vxgpsruvun] {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.cta-content p[b-vxgpsruvun] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
}

.cta-buttons[b-vxgpsruvun] {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-buttons .btn[b-vxgpsruvun] {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
}

.landing-footer[b-vxgpsruvun] {
    background: rgba(0, 0, 0, 0.4);
    padding: 5rem 0 2rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid var(--color-border-light);
}

.landing-footer h5[b-vxgpsruvun] {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.landing-footer a[b-vxgpsruvun] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.landing-footer a:hover[b-vxgpsruvun] {
    color: var(--color-primary);
    transform: translateX(5px);
}

.landing-footer li[b-vxgpsruvun] {
    margin-bottom: 0.75rem;
}

.footer-bottom[b-vxgpsruvun] {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-title[b-vxgpsruvun] {
        font-size: 2.5rem;
    }

    .hero-features[b-vxgpsruvun] {
        grid-template-columns: 1fr;
    }

    .cta-buttons[b-vxgpsruvun] {
        flex-direction: column;
    }

    .cta-content[b-vxgpsruvun] {
        padding: 2rem;
    }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.not-found-container[b-y1kdectc2k] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
}

[b-y1kdectc2k] .eg-card {
    text-align: center;
    max-width: 500px;
    padding: 3rem;
}

.not-found-icon[b-y1kdectc2k] {
    font-size: 5rem;
    color: var(--bs-warning, #ffc107);
    margin-bottom: 1rem;
}

[b-y1kdectc2k] .eg-card h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    line-height: 1;
}

[b-y1kdectc2k] .eg-card .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.not-found-details[b-y1kdectc2k] {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.not-found-details p[b-y1kdectc2k] {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.not-found-actions[b-y1kdectc2k] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.not-found-actions .btn[b-y1kdectc2k] {
    min-width: 150px;
}
/* /Components/Pages/Signup.razor.rz.scp.css */
.signup-card[b-ku27kjlad9] {
    max-width: 600px;
    margin: 0 auto;
}

[b-ku27kjlad9] .eg-card {
    margin-bottom: 2rem;
}

[b-ku27kjlad9] .eg-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

[b-ku27kjlad9] .eg-card-header h2 {
    color: #fff;
    font-weight: 700;
}

[b-ku27kjlad9] .eg-card-body {
    padding: 2rem;
}

.bg-primary-glass[b-ku27kjlad9] {
    background: linear-gradient(
        135deg,
        rgba(0, 123, 255, 0.2) 0%,
        rgba(0, 123, 255, 0.1) 100%
    ) !important;
}

.bg-success-glass[b-ku27kjlad9] {
    background: linear-gradient(
        135deg,
        rgba(40, 167, 69, 0.2) 0%,
        rgba(40, 167, 69, 0.1) 100%
    ) !important;
}

[b-ku27kjlad9] .form-control,
[b-ku27kjlad9] .form-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

[b-ku27kjlad9] .form-control:focus,
[b-ku27kjlad9] .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--bs-primary) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25) !important;
}

[b-ku27kjlad9] .form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[b-ku27kjlad9] .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-label[b-ku27kjlad9] {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.border-bottom[b-ku27kjlad9] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

h5[b-ku27kjlad9] {
    color: #fff;
}

.alert-info[b-ku27kjlad9] {
    background-color: rgba(13, 202, 240, 0.1);
    border: 1px solid rgba(13, 202, 240, 0.2);
    color: #0dcaf0;
}

.pricing-card[b-ku27kjlad9] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover[b-ku27kjlad9] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.pricing-card.border-primary[b-ku27kjlad9] {
    border-color: #0d6efd !important;
    background: rgba(13, 110, 253, 0.05);
}
/* /Components/Shared/InviteUserModal.razor.rz.scp.css */
.modal-content[b-jqsff8rnut] {
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-header[b-jqsff8rnut] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer[b-jqsff8rnut] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close[b-jqsff8rnut] {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.form-label[b-jqsff8rnut] {
    color: rgba(255, 255, 255, 0.7);
}

.form-control[b-jqsff8rnut],
.form-select[b-jqsff8rnut] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus[b-jqsff8rnut],
.form-select:focus[b-jqsff8rnut] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.form-control[b-jqsff8rnut]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.text-muted[b-jqsff8rnut] {
    color: rgba(255, 255, 255, 0.5) !important;
}

.alert-danger[b-jqsff8rnut] {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #ff8080;
}
/* /Components/Theme/ThemeToggle.razor.rz.scp.css */
.btn[b-kfjbwrf2tu] { font-weight: 600; }
