@import 'Miracle.Web.Client.91ehxj1exm.bundle.scp.css';

/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* Login Page Styling - Split Screen Design */
.login-page-container[b-gavugg8hjn] {
    background: var(--color-bg-light, #f9fafb);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card[b-gavugg8hjn] {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.08);
    /* Stronger shadow for depth */
    position: relative;
    overflow: hidden;
    width: 800px;
    /* Wider card */
    max-width: 100%;
    min-height: 500px;
    /* Taller card */
    display: flex;
    flex-direction: row;
    /* Side by side */
}

/* Left Panel: Sign In Form */
.login-form-panel[b-gavugg8hjn] {
    flex: 1;
    /* Take 50% width */
    padding: 40px 60px;
    /* More side padding, less top/bottom to center content better */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    transition: all 0.6s ease-in-out;
}

.login-header-text[b-gavugg8hjn] {
    font-size: 32px;
    font-weight: 800;
    /* Bolder */
    color: var(--color-primary-darker, #1e40af) !important;
    /* Use darker primary for header */
    margin-bottom: 20px;
}

.login-social-container[b-gavugg8hjn] {
    margin: 15px 0;
}

/* Force social icons to be visible if they are links */
.login-social-container a[b-gavugg8hjn] {
    border: 1px solid #dddddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    color: #333333;
    text-decoration: none;
    transition: 0.3s;
}

.login-social-container a:hover[b-gavugg8hjn] {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.login-subtitle-text[b-gavugg8hjn] {
    font-size: 14px;
    color: #888888;
    margin-bottom: 20px;
}

/* Form Elements */
[b-gavugg8hjn] .dxbl-form-layout-item-caption {
    display: none !important;
    /* Hide labels for cleaner look (using placeholders if possible, or minimalistic) */
}

/* If placeholders aren't easy with DexExpress, we keep labels but make them subtle */
[b-gavugg8hjn] .dxbl-form-layout-item {
    margin-bottom: 10px;
    width: 100%;
}

[b-gavugg8hjn] .dxbl-edit-container input {
    background-color: var(--color-bg-light, #f9fafb) !important;
    /* Light background */
    border: 1px solid var(--color-border, #e5e7eb) !important;
    padding: 15px 20px !important;
    margin: 8px 0 !important;
    width: 100% !important;
    border-radius: 30px !important;
    outline: none !important;
    height: 45px !important;
    /* Force height */
    color: var(--color-text, #333) !important;
}

[b-gavugg8hjn] .dxbl-edit-container input:focus {
    background-color: #fff !important;
    border-color: var(--color-primary, #2563eb) !important;
    border-color: var(--color-primary, #2563eb) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

.login-forgot-password[b-gavugg8hjn] {
    color: #888888;
    font-size: 14px;
    text-decoration: none;
    margin: 10px 0 20px;
    display: block;
    border-bottom: 1px solid transparent;
}

.login-forgot-password:hover[b-gavugg8hjn] {
    color: var(--color-primary, #2563eb);
    border-bottom: 1px solid var(--color-primary, #2563eb);
}

/* Button Styling (Pill Shape) */
/* Using more specific selectors to prevent overrides */
[b-gavugg8hjn] .dxbl-btn.login-btn-primary,
[b-gavugg8hjn] .login-btn-primary {
    border-radius: 25px !important;
    background: var(--color-primary, #2563eb) !important;
    /* Theme Blue */
    border: 1px solid var(--color-primary, #2563eb) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: bold !important;
    padding: 12px 45px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3) !important;
    width: auto !important;
    min-width: 150px;
}

[b-gavugg8hjn] .dxbl-btn.login-btn-primary:hover,
[b-gavugg8hjn] .login-btn-primary:hover {
    background: var(--color-primary-dark, #1d4ed8) !important;
    /* Darker Blue hover */
    border-color: var(--color-primary-dark, #1d4ed8) !important;
    transform: scale(1.02);
}

[b-gavugg8hjn] .dxbl-btn.login-btn-primary:active {
    transform: scale(0.98);
}

/* Right Panel: Overlay / Hello Friend */
.login-overlay-container[b-gavugg8hjn] {
    flex: 1;
    /* Take 50% width */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    /* Blue Gradient */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
    text-align: center;
}

.login-overlay-content[b-gavugg8hjn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.login-overlay-content h1[b-gavugg8hjn] {
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 10px;
}

.login-overlay-content p[b-gavugg8hjn] {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 20px 0 35px;
    max-width: 300px;
    /* Constrain text width */
    margin-left: auto;
    margin-right: auto;
}

/* Ghost Button for Sign Up */
.login-ghost-btn[b-gavugg8hjn] {
    border-radius: 25px;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s ease-in, background-color 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
}

.login-ghost-btn:hover[b-gavugg8hjn] {
    background-color: rgba(255, 255, 255, 0.2);
}

.login-ghost-btn:active[b-gavugg8hjn] {
    transform: scale(0.95);
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .login-page-container[b-gavugg8hjn] {
        display: block;
        /* Disable flex centering to allow scroll */
        height: auto;
        /* Remove 100vh constraint */
        padding: 20px;
    }

    .login-card[b-gavugg8hjn] {
        flex-direction: column;
        width: 100%;
        min-height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .login-form-panel[b-gavugg8hjn],
    .login-overlay-container[b-gavugg8hjn] {
        padding: 40px 20px;
    }

    .login-overlay-container[b-gavugg8hjn] {
        order: 1;
        /* Welcome top */
    }

    .login-form-panel[b-gavugg8hjn] {
        order: 2;
        /* Form bottom */
    }
}
/* /Components/Account/Pages/Manage/EnableAuthenticator.razor.rz.scp.css */
.info-message[b-0jd7v0i5u9] {
    margin: 0.625rem 0 0.625rem 0;
    justify-content: start;
}
/* /Components/Account/Pages/Manage/ExternalLogins.razor.rz.scp.css */
.current-logins[b-zjmmgr8yed] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.current-logins-item[b-zjmmgr8yed] {
    display: flex;
    gap: 0.625rem;
}
/* /Components/Account/Pages/Manage/Index.razor.rz.scp.css */
/* Manage Account Page Styling - Matching App Theme */

/* Content Card */
.block-content[b-rixgndk0z0] {
    max-width: 48rem;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #4a8a82;
}

/* Title Section (within content block) */
.title[b-rixgndk0z0] {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(58, 106, 100, 0.1);
}

.title-header-text[b-rixgndk0z0] {
    background: linear-gradient(135deg, #3a6a64 0%, #5eaaa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.title-content-text[b-rixgndk0z0] {
    color: #64748b;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Enhanced form layout styling */
[b-rixgndk0z0] .dxbl-form-layout {
    gap: 1.5rem;
}

[b-rixgndk0z0] .dxbl-form-layout-item {
    margin-bottom: 1.5rem;
}

[b-rixgndk0z0] .dxbl-form-layout-item-caption {
    color: #334155;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

[b-rixgndk0z0] .dxbl-edit-container input {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

[b-rixgndk0z0] .dxbl-edit-container input:focus {
    border-color: #4a8a82;
    box-shadow: 0 0 0 4px rgba(74, 138, 130, 0.1);
    outline: none;
}

[b-rixgndk0z0] .dxbl-edit-container input:disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

/* Save button styling */
[b-rixgndk0z0] .dxbl-btn-primary,
[b-rixgndk0z0] .dxbl-btn.btn-primary {
    background: linear-gradient(135deg, #3a6a64 0%, #4a8a82 50%, #5eaaa0 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(58, 106, 100, 0.25);
    font-size: 1rem;
}

[b-rixgndk0z0] .dxbl-btn-primary:hover,
[b-rixgndk0z0] .dxbl-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 106, 100, 0.35);
}

[b-rixgndk0z0] .dxbl-btn-primary:active,
[b-rixgndk0z0] .dxbl-btn.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(58, 106, 100, 0.2);
}

/* Status messages */
[b-rixgndk0z0] .alert {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: none;
    font-weight: 500;
}

[b-rixgndk0z0] .alert-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    border-left: 4px solid #10b981;
}

[b-rixgndk0z0] .alert-danger {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

[b-rixgndk0z0] .alert-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

[b-rixgndk0z0] .text-danger,
[b-rixgndk0z0] .validation-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Page header enhancement */
[b-rixgndk0z0] h1,
[b-rixgndk0z0] h2,
[b-rixgndk0z0] h3 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
}

[b-rixgndk0z0] h1 {
    background: linear-gradient(135deg, #3a6a64 0%, #5eaaa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .block-content[b-rixgndk0z0] {
        margin: 0 0.5rem 1rem;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .title-header-text[b-rixgndk0z0] {
        font-size: 1.75rem;
    }

    [b-rixgndk0z0] .dxbl-btn-primary,
    [b-rixgndk0z0] .dxbl-btn.btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}
/* /Components/Account/Pages/Register.razor.rz.scp.css */
/* Register Page Styling - Matches Login Design */
.login-page-container[b-miv3rxjvcl] {
    background: var(--color-bg-light, #f9fafb);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-card[b-miv3rxjvcl] {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: row;
    /* Default: Overlay Left, Form Right */
}

/* Form Panel */
.login-form-panel[b-miv3rxjvcl] {
    flex: 6;
    /* 60% Width for Register Form since it has more fields */
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
}

.login-header-text[b-miv3rxjvcl] {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary-darker, #1e40af) !important;
    margin-bottom: 20px;
}

.login-subtitle-text[b-miv3rxjvcl] {
    font-size: 14px;
    color: #888888;
    margin-bottom: 20px;
}

/* Form Elements */
[b-miv3rxjvcl] .dxbl-form-layout-item-caption {
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

[b-miv3rxjvcl] .dxbl-form-layout-item {
    margin-bottom: 10px;
    width: 100%;
}

[b-miv3rxjvcl] .dxbl-edit-container input {
    background-color: var(--color-bg-light, #f9fafb) !important;
    border: 1px solid var(--color-border, #e5e7eb) !important;
    padding: 15px 20px !important;
    margin: 5px 0 !important;
    width: 100% !important;
    border-radius: 30px !important;
    outline: none !important;
    height: 40px !important;
    /* Slightly smaller height for tighter form */
    color: var(--color-text, #333) !important;
}

[b-miv3rxjvcl] .dxbl-edit-container input:focus {
    background-color: #fff !important;
    border-color: var(--color-primary, #2563eb) !important;
    border-color: var(--color-primary, #2563eb) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

/* Button Styling */
[b-miv3rxjvcl] .dxbl-btn.login-btn-primary,
[b-miv3rxjvcl] .login-btn-primary {
    border-radius: 25px !important;
    background: var(--color-primary, #2563eb) !important;
    border: 1px solid var(--color-primary, #2563eb) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: bold !important;
    padding: 12px 45px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3) !important;
    width: auto !important;
    min-width: 150px;
    margin-top: 20px;
}

[b-miv3rxjvcl] .dxbl-btn.login-btn-primary:hover {
    background: var(--color-primary-dark, #1d4ed8) !important;
    border-color: var(--color-primary-dark, #1d4ed8) !important;
    transform: scale(1.02);
}

[b-miv3rxjvcl] .dxbl-btn.login-btn-primary:active {
    transform: scale(0.98);
}

/* Overlay Panel */
.login-overlay-container[b-miv3rxjvcl] {
    flex: 4;
    /* 40% Width for Overlay */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
    text-align: center;
}

.login-overlay-content h1[b-miv3rxjvcl] {
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 10px;
}

.login-overlay-content p[b-miv3rxjvcl] {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 20px 0 35px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Ghost Button */
.login-ghost-btn[b-miv3rxjvcl] {
    border-radius: 25px;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s ease-in, background-color 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
}

.login-ghost-btn:hover[b-miv3rxjvcl] {
    background-color: rgba(255, 255, 255, 0.2);
}

.login-ghost-btn:active[b-miv3rxjvcl] {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .login-page-container[b-miv3rxjvcl] {
        display: block;
        /* Disable flex centering to allow scroll */
        height: auto;
        /* Remove 100vh constraint */
        padding: 20px;
    }

    .login-card[b-miv3rxjvcl] {
        flex-direction: column;
        min-height: auto;
        margin-bottom: 20px;
    }

    .login-form-panel[b-miv3rxjvcl],
    .login-overlay-container[b-miv3rxjvcl] {
        flex: auto;
        padding: 40px 20px;
    }

    /* Keep generic order on mobile, usually Form first or text first. */
    .login-overlay-container[b-miv3rxjvcl] {
        order: 1;
    }

    .login-form-panel[b-miv3rxjvcl] {
        order: 2;
    }
}
/* /Components/Account/Shared/ExternalLoginPicker.razor.rz.scp.css */
.external-logins[b-13uxsdcjq3] {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 500px) {
    .external-logins[b-13uxsdcjq3] {
        flex-direction: column;
    }
}
/* /Components/Account/Shared/ManageLayout.razor.rz.scp.css */
/* Manage Layout Styling - Matching App Theme */

.manage-layout[b-4vfd27juzg] {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* Title Section */
.title[b-4vfd27juzg] {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
}

.title-header-text[b-4vfd27juzg] {
    background: linear-gradient(135deg, #3a6a64 0%, #5eaaa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.title-content-text[b-4vfd27juzg] {
    color: #64748b;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Navigation Tabs */
[b-4vfd27juzg] .dxbl-tabs {
    max-width: 56rem;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

[b-4vfd27juzg] .dxbl-tab {
    color: #64748b;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
}

[b-4vfd27juzg] .dxbl-tab:hover {
    background: #f8fafc;
    color: #3a6a64;
}

[b-4vfd27juzg] .dxbl-tab-active {
    background: linear-gradient(135deg, #3a6a64 0%, #4a8a82 50%, #5eaaa0 100%);
    color: white !important;
}

[b-4vfd27juzg] .dxbl-tab-active:hover {
    background: linear-gradient(135deg, #3a6a64 0%, #4a8a82 50%, #5eaaa0 100%);
    color: white !important;
}

[b-4vfd27juzg] .tab-icon {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
    background-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-position: center center;
    background-color: currentColor;
}

[b-4vfd27juzg] .icon-profile {
    -webkit-mask-image: url("images/account/manage-profile.svg");
    mask-image: url("images/account/manage-profile.svg");
}

[b-4vfd27juzg] .icon-email {
    -webkit-mask-image: url("images/account/manage-email.svg");
    mask-image: url("images/account/manage-email.svg");
}

[b-4vfd27juzg] .icon-two-factor {
    -webkit-mask-image: url("images/account/manage-two-factor.svg");
    mask-image: url("images/account/manage-two-factor.svg");
}

[b-4vfd27juzg] .icon-password {
    -webkit-mask-image: url("images/account/manage-password.svg");
    mask-image: url("images/account/manage-password.svg");
}

[b-4vfd27juzg] .icon-personal {
    -webkit-mask-image: url("images/account/manage-personal.svg");
    mask-image: url("images/account/manage-personal.svg");
}

[b-4vfd27juzg] .icon-external {
    -webkit-mask-image: url("images/account/user.svg");
    mask-image: url("images/account/user.svg");
}

@media (max-width: 768px) {
    .manage-layout[b-4vfd27juzg] {
        padding: 1rem 0.5rem;
    }

    .title[b-4vfd27juzg] {
        padding: 1.5rem 0.5rem;
    }

    .title-header-text[b-4vfd27juzg] {
        font-size: 2rem;
    }

    [b-4vfd27juzg] .dxbl-tabs {
        padding: 0.25rem;
    }

    [b-4vfd27juzg] .dxbl-tab {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}
/* /Components/Account/Shared/ShowRecoveryCodes.razor.rz.scp.css */
.codes[b-axou0ej5bl] {
    margin: 0.625rem 0px 0.625rem 0px;
}
/* /Components/Layout/Drawer.razor.rz.scp.css */
::deep .navigation-drawer[b-slqh9kpmep] {
    --dxbl-drawer-panel-footer-justify-content: center;
    height: 100vh;
    max-height: 100%;
}

[b-slqh9kpmep] .panel-open:not(.mobile) .menu-button {
    display: none;
}

@media (max-width: 768px) {
    [b-slqh9kpmep] .panel-open:not(.mobile) .menu-button {
        display: inline-flex;
    }

    .mobile-drawer-closed .shading-copy[b-slqh9kpmep] {
        display: none;
        visibility: hidden;
    }

    [b-slqh9kpmep] .shading-copy {
        background-color: var(--dxbl-drawer-content-shading-bg);
        height: 100%;
        position: absolute;
        transition: opacity ease var(--dxbl-drawer-animation-duration);
        visibility: visible;
        width: 100%;
        z-index: 100;
        opacity: var(--dxbl-drawer-content-shading-opacity);
    }

    [b-slqh9kpmep] .panel-open .shading-copy {
        opacity: 0;
        visibility: unset;
        height: unset;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-2dem0q1v5l] {
    height: 100%;
    font-family: var(--bs-font-sans-serif);
    background: #f8f9fa;
}

/* Logo sizing */
.logo.sidebar-logo[b-2dem0q1v5l] {
    max-width: 50px;
    height: auto;
    display: block;
}

.logo.footer-logo[b-2dem0q1v5l] {
    max-width: 50px;
    height: auto;
    display: block;
}

/* Sharper, flatter design - no shadows */
[b-2dem0q1v5l] .navigation-drawer>.dxbl-drawer-panel {
    background: linear-gradient(180deg, #3a6a64 0%, #4a8a82 50%, #5eaaa0 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

[b-2dem0q1v5l] .dxbl-drawer .dxbl-drawer-content {
    height: 100vh;
    overflow: auto;
    background-color: #f8f9fa;
}

[b-2dem0q1v5l] .dxbl-drawer>.dxbl-drawer-panel .dxbl-drawer-header {
    border-bottom: none;
    padding: 1.5rem 1rem;
}

[b-2dem0q1v5l] .dxbl-drawer-panel .dxbl-drawer-header .navigation-drawer-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[b-2dem0q1v5l] .dxbl-drawer>.dxbl-drawer-panel>.dxbl-drawer-body {
    --dxbl-drawer-panel-body-padding-x: 0;
    --dxbl-drawer-panel-body-padding-y: 0.75rem;
}

[b-2dem0q1v5l] .dxbl-drawer>.dxbl-drawer-panel .dxbl-drawer-footer {
    --dxbl-drawer-panel-footer-justify-content: center;
    border-top: none;
    padding-bottom: 1.25rem;
}

[b-2dem0q1v5l] .content {
    overflow: auto;
    display: flex;
    flex-direction: column;
}

[b-2dem0q1v5l] .icon {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: center center;
    -webkit-mask-mask-position: center center;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-2dem0q1v5l] .icon-back {
    -webkit-mask-image: url("images/back.svg");
    mask-image: url("images/back.svg");
}

[b-2dem0q1v5l] .icon-close {
    -webkit-mask-image: url("images/close.svg");
    mask-image: url("images/close.svg");
}

[b-2dem0q1v5l] .icon-menu {
    -webkit-mask-image: url("images/menu.svg");
    mask-image: url("images/menu.svg");
}

[b-2dem0q1v5l] .icon-log-in {
    -webkit-mask-image: url("images/account/log-in.svg");
    mask-image: url("images/account/log-in.svg");
}

[b-2dem0q1v5l] .icon-log-out {
    -webkit-mask-image: url("images/account/log-out.svg");
    mask-image: url("images/account/log-out.svg");
}

[b-2dem0q1v5l] .icon-user {
    -webkit-mask-image: url("images/account/user.svg");
    mask-image: url("images/account/user.svg");
}

[b-2dem0q1v5l] .docs-icon {
    mask-image: url("images/doc.svg");
    -webkit-mask-image: url("images/doc.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-2dem0q1v5l] .demos-icon {
    mask-image: url("images/demos.svg");
    -webkit-mask-image: url("images/demos.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-2dem0q1v5l] .footer-button:hover .demos-icon {
    background-color: var(--dxbl-btn-hover-color);
}

[b-2dem0q1v5l] .footer-button:hover .docs-icon {
    background-color: var(--dxbl-btn-hover-color);
}

[b-2dem0q1v5l] .menu-button:hover .icon {
    background-color: var(--dxbl-btn-hover-color);
}

[b-2dem0q1v5l] .menu-button-nav:hover .icon {
    background-color: var(--dxbl-btn-hover-color);
}

.panel-open .menu-button[b-2dem0q1v5l] {
    display: inline-flex;
}

.menu-button-nav[b-2dem0q1v5l] {
    background-image: url("images/close.svg");
    width: 1.875rem;
    height: 1.875rem;
}

/* Flatter nav buttons - sharper edges */
.nav-buttons-container[b-2dem0q1v5l] {
    display: flex;
    gap: 8px;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-buttons-container[b-2dem0q1v5l]  .menubutton-float-end {
    margin-left: auto;
}

.nav-buttons-container[b-2dem0q1v5l]  .dxbl-btn-icon-only {
    --dxbl-btn-padding-x: 0.75rem;
    --dxbl-btn-padding-y: 0.25rem;
}

.branch-name-display[b-2dem0q1v5l] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(20, 184, 166, 0.3);
    border: 1px solid rgba(20, 184, 166, 0.5);
    border-radius: 6px;
    margin-left: auto;
    margin-right: 0.5rem;
}

.branch-label[b-2dem0q1v5l] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-value[b-2dem0q1v5l] {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

[b-2dem0q1v5l] .navigation-drawer>.dxbl-drawer-panel {
    display: flex;
}

[b-2dem0q1v5l] .navigation-drawer.mobile>.dxbl-drawer-panel {
    display: none;
}

[b-2dem0q1v5l] .navigation-drawer.mobile>.dxbl-drawer-shading {
    display: none;
}

@media (max-width: 768px) {
    [b-2dem0q1v5l] .navigation-drawer>.dxbl-drawer-panel {
        display: none;
    }

    [b-2dem0q1v5l] .navigation-drawer.mobile>.dxbl-drawer-panel {
        display: flex;
    }

    [b-2dem0q1v5l] .navigation-drawer.mobile>.dxbl-drawer-shading {
        display: block;
    }

    .logo.sidebar-logo[b-2dem0q1v5l] {
        max-width: 60px;
    }

    .logo.footer-logo[b-2dem0q1v5l] {
        max-width: 50px;
    }
}
/* /Components/Layout/SideNavLayout.razor.rz.scp.css */
/* Sidebar Layout Root - Updated for boxed layout */
.sidenav-layout[b-jbxgkz09lp] {
    display: flex;
    flex-direction: row;
    height: 100vh;
    background: var(--color-bg-layout); /* Overall page background */
    position: relative;
    overflow: hidden;
    padding: 1rem; /* Reduced space around the whole app */
    gap: 0;
}

@media (max-width: 991.98px) {
    .sidenav-layout[b-jbxgkz09lp] {
        padding: 0;
    }
}

/* New curved main card wrapper */
.sidenav-main-card[b-jbxgkz09lp] {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    background: var(--color-bg-card);
    border-radius: 20px; /* Reverted to softer endings */
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); /* Extremely soft, flat shadow */
}

@media (max-width: 991.98px) {
    .sidenav-main-card[b-jbxgkz09lp] {
        border-radius: 0; /* Remove rounded corners on mobile */
    }
}

/* Sidebar Container */
.sidenav-sidebar[b-jbxgkz09lp] {
    width: 280px;
    background: var(--color-bg-card); /* Same as card background */
    border-right: 1px solid var(--color-border-subtle); /* separator */
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 1040;
    transition: transform 0.3s ease, width 0.3s ease;
    height: 100%;
}

/* Header & Brand */
.sidenav-header[b-jbxgkz09lp] {
    height: 70px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-subtle);
    background: transparent;
}

.sidenav-brand[b-jbxgkz09lp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
}

.sidenav-logo[b-jbxgkz09lp] {
    height: 64px;
    filter: brightness(1.2);
}

.sidenav-mobile-close[b-jbxgkz09lp] {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}

/* Profile Section */
.sidenav-profile[b-jbxgkz09lp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border-subtle);
    background: transparent;
}

.sidenav-avatar[b-jbxgkz09lp] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.sidenav-avatar img[b-jbxgkz09lp] { width: 100%; height: 100%; object-fit: cover; }
.sidenav-avatar-icon[b-jbxgkz09lp] { font-size: 1.25rem; }

.sidenav-profile-details[b-jbxgkz09lp] {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidenav-profile-name[b-jbxgkz09lp] {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sidenav-profile-actions[b-jbxgkz09lp] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.sidenav-profile-link[b-jbxgkz09lp], .sidenav-logout-btn[b-jbxgkz09lp] {
    color: var(--color-primary);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.sidenav-profile-link:hover[b-jbxgkz09lp], .sidenav-logout-btn:hover[b-jbxgkz09lp] { text-decoration: underline; opacity: 1; }
.sidenav-divider-dot[b-jbxgkz09lp] { font-weight: bold; }

/* Branch Selector */
.sidenav-selector-wrap[b-jbxgkz09lp] {
    padding: 1rem 1.5rem 0.5rem;
}
.sidenav-selector-wrap[b-jbxgkz09lp]  .dx-texteditor-input {
    background: var(--color-surface) !important;
    border: 1px solid var(--color-border-subtle) !important;
    color: var(--color-text) !important;
    font-size: 0.85rem;
}
.sidenav-selector-wrap[b-jbxgkz09lp]  .dx-overlay-content {
    background: #ffffff;
    color: #1e293b;
}

/* Nav Area */
.sidenav-scrollarea[b-jbxgkz09lp] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
.sidenav-scrollarea[b-jbxgkz09lp]::-webkit-scrollbar { width: 6px; }
.sidenav-scrollarea[b-jbxgkz09lp]::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.15); border-radius: 4px; }

/* Links - Pastel Pill Styles */
.sidenav-nav[b-jbxgkz09lp] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.sidenav-layout[b-jbxgkz09lp]  .nav-link.sidenav-link, 
.sidenav-layout[b-jbxgkz09lp]  a.sidenav-link, 
.sidenav-layout[b-jbxgkz09lp]  .sidenav-menu-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--color-text-nav) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    font-family: inherit;
}

.sidenav-layout[b-jbxgkz09lp]  .nav-link.sidenav-link:hover, 
.sidenav-layout[b-jbxgkz09lp]  a.sidenav-link:hover, 
.sidenav-layout[b-jbxgkz09lp]  .nav-link.sidenav-link:focus,
.sidenav-layout[b-jbxgkz09lp]  .sidenav-menu-header:hover { 
    background: var(--color-nav-hover) !important; 
    color: var(--color-text-nav-hover) !important; 
}

/* Specific Pastel Colors based on Mockup removed for visual consistency */

.sidenav-icon[b-jbxgkz09lp] { font-size: 1.1rem; width: 20px; text-align: center; }

/* Menus */
.sidenav-menu-group[b-jbxgkz09lp] { margin-bottom: 0px; }

/* The header text logic has been merged into the shared link class above.
   Override any leftover specifics here so it matches a standard link: */
.sidenav-menu-header[b-jbxgkz09lp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: none;
    letter-spacing: normal;
}
.sidenav-menu-header .d-flex[b-jbxgkz09lp] {
    align-items: center;
    gap: 0.5rem;
}
.sidenav-menu-header:hover[b-jbxgkz09lp] {
    color: var(--color-text-nav-hover) !important;
}

.sidenav-collapse-icon[b-jbxgkz09lp] {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.sidenav-menu-header[aria-expanded="true"] .sidenav-collapse-icon[b-jbxgkz09lp] {
    transform: rotate(-180deg);
}

.sidenav-submenu[b-jbxgkz09lp] { padding-left: 2.5rem; margin-top: 0; margin-bottom: 0; }
.sidenav-layout[b-jbxgkz09lp]  .nav-link.sidenav-sublink,
.sidenav-layout[b-jbxgkz09lp]  a.sidenav-sublink {
    display: block;
    padding: 0.3rem 1rem 0.3rem 0;
    color: var(--color-text-light) !important;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.15s;
}
.sidenav-layout[b-jbxgkz09lp]  .nav-link.sidenav-sublink:hover, 
.sidenav-layout[b-jbxgkz09lp]  a.sidenav-sublink:hover,
.sidenav-layout[b-jbxgkz09lp]  .nav-link.sidenav-sublink.active { 
    color: var(--color-primary-dark) !important; 
    font-weight: 600; 
}

/* Section Headers (OPERATIONS, FINANCE & OPS) */
.sidenav-section-header[b-jbxgkz09lp] {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0 0.5rem 1.25rem;
    display: block;
}

/* Main Content Area */
.sidenav-main[b-jbxgkz09lp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: transparent;
    overflow: hidden;
}

.sidenav-content[b-jbxgkz09lp] {
    flex: 1;
    padding: 1.25rem; /* Reduced from 2rem */
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
}

.sidenav-footer[b-jbxgkz09lp] {
    padding: 1rem;
    text-align: left;
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Top Header Bar */
.sidenav-topbar[b-jbxgkz09lp] {
    height: 80px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1020;
    flex-shrink: 0;
}

.sidenav-topbar-left[b-jbxgkz09lp] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidenav-topbar-right[b-jbxgkz09lp] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sidenav-topbar-profile[b-jbxgkz09lp] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidenav-topbar-title[b-jbxgkz09lp] {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text); /* Deep blue fore color */
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.sidenav-topbar-subtitle[b-jbxgkz09lp] {
    font-size: 0.8rem;
    color: var(--color-text-light); /* Slate muted */
    line-height: 1.1;
}

.sidenav-topbar-subtitle a[b-jbxgkz09lp], .sidenav-topbar-subtitle button[b-jbxgkz09lp] {
    color: #64748b !important;
    text-decoration: none;
    transition: color 0.2s;
}

.sidenav-topbar-subtitle a:hover[b-jbxgkz09lp], .sidenav-topbar-subtitle button:hover[b-jbxgkz09lp] {
    color: var(--color-text) !important;
}

.sidenav-topbar-avatar[b-jbxgkz09lp] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.sidenav-topbar-avatar img[b-jbxgkz09lp] { width: 100%; height: 100%; object-fit: cover; }
.sidenav-topbar-avatar-icon[b-jbxgkz09lp] { font-size: 1.25rem; }

/* Sidebar Footer */
.sidenav-sidebar-footer[b-jbxgkz09lp] {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.sidenav-sidebar-selector[b-jbxgkz09lp]  .branch-store-selector {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}

.sidenav-sidebar-selector[b-jbxgkz09lp]  .selector-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.sidenav-sidebar-selector[b-jbxgkz09lp]  .selector-label {
    margin-bottom: 0;
    white-space: nowrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.sidenav-sidebar-selector[b-jbxgkz09lp]  .selector-dropdown {
    width: 100%;
    height: 32px;
    padding: 0 0.5rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.sidenav-sidebar-selector[b-jbxgkz09lp]  .selector-dropdown option {
    background: #1e40af;
    color: white;
}

.sidenav-mobile-toggle[b-jbxgkz09lp] {
    background: none;
    border: none;
    color: #1e40af;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.sidenav-header-collapse-toggle[b-jbxgkz09lp] {
    background: transparent;
    border: none;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.sidenav-header-collapse-toggle:hover[b-jbxgkz09lp] {
    background: rgba(100, 116, 139, 0.15); /* Soft, universal hover background */
}

.sidenav-mobile-brand[b-jbxgkz09lp] { display: flex; align-items: center; }
.sidenav-mobile-logo[b-jbxgkz09lp] { height: 28px; }
.sidenav-backdrop[b-jbxgkz09lp] { display: none; }

@media (max-width: 991px) {
    .sidenav-sidebar[b-jbxgkz09lp] {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        transition: left 0.3s ease;
    }
    .sidenav-sidebar.show[b-jbxgkz09lp] { left: 0; }
    .sidenav-sidebar.show ~ .sidenav-backdrop[b-jbxgkz09lp] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1030;
    }
    .sidenav-content[b-jbxgkz09lp] { padding: 1rem; }
}

@media (min-width: 992px) {
    .sidenav-content[b-jbxgkz09lp] { padding: 2rem; }
}

@media (min-width: 1200px) {
    .sidenav-content[b-jbxgkz09lp] { padding: 2.5rem 3rem; }
}

/* ─── Collapsed Sidebar Styles ─── */
.sidenav-sidebar.collapsed[b-jbxgkz09lp] {
    width: 70px; /* narrowed width */
}

.sidenav-sidebar.collapsed .sidenav-brand-header[b-jbxgkz09lp] {
    padding: 1rem !important;
    justify-content: center !important;
}

.sidenav-sidebar.collapsed .sidenav-topbar-title[b-jbxgkz09lp],
.sidenav-sidebar.collapsed .sidenav-topbar-subtitle[b-jbxgkz09lp],
.sidenav-sidebar.collapsed .sidenav-text[b-jbxgkz09lp],
.sidenav-sidebar.collapsed .sidenav-collapse-icon[b-jbxgkz09lp],
.sidenav-sidebar.collapsed .sidenav-section-header[b-jbxgkz09lp],
.sidenav-sidebar.collapsed .sidenav-sidebar-footer .dropdown-toggle span[b-jbxgkz09lp] {
    display: none !important;
}

.sidenav-sidebar.collapsed .sidenav-menu-header[b-jbxgkz09lp] {
    justify-content: center;
    padding: 0.75rem;
}

.sidenav-sidebar.collapsed .sidenav-icon[b-jbxgkz09lp] {
    margin: 0;
    font-size: 1.25rem;
}

/* Floating Submenus on Hover for Collapsed State */
/* Note: Since we are using Bootstrap's collapse, we must override it on hover when collapsed */
@media (min-width: 992px) {
    .sidenav-sidebar.collapsed .sidenav-menu-group[b-jbxgkz09lp] {
        position: relative;
    }

    .sidenav-sidebar.collapsed .sidenav-menu-group:hover .collapse[b-jbxgkz09lp] {
        display: block !important; /* Override collapse hidden state */
        position: absolute;
        top: 0;
        left: calc(100% + 5px);
        width: 200px;
        background: var(--color-bg-card);
        border: 1px solid var(--color-border-subtle);
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        z-index: 1050;
        padding: 0.5rem;
    }

    /* Modifiers to pop menus upwards if they are at the bottom of the screen */
    .sidenav-sidebar.collapsed .sidenav-menu-group.menu-up:hover .collapse[b-jbxgkz09lp] {
        top: auto;
        bottom: 0;
    }

    .sidenav-sidebar.collapsed .collapse .sidenav-submenu[b-jbxgkz09lp] {
        padding-left: 0;
    }

    .sidenav-sidebar.collapsed .collapse .sidenav-sublink[b-jbxgkz09lp] {
        padding: 0.5rem 1rem;
        border-radius: 6px;
    }

    .sidenav-sidebar.collapsed .collapse .sidenav-sublink:hover[b-jbxgkz09lp] {
        background: var(--color-nav-hover);
    }
}
/* /Components/Layout/TopNavLayout.razor.rz.scp.css */
/* Top Navbar Layout Styling - Modern Design with Dark Background */

/* Root Layout */
.topnav-layout[b-x96h7eyq0d] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

/* Modern Navbar Styling - Dark background with vibrant green gradient */
.topnav-navbar[b-x96h7eyq0d] {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    padding: 0.4rem 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(37, 99, 235, 0.25);
}

/* Navbar Brand */
.topnav-brand[b-x96h7eyq0d] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff !important;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.topnav-brand:hover[b-x96h7eyq0d] {
    transform: scale(1.02);
}

.nav-item[b-x96h7eyq0d] {
    white-space: nowrap;
}

.topnav-logo[b-x96h7eyq0d] {
    height: 32px;
    width: auto;
    filter: brightness(1.15);
}

.topnav-brand-text[b-x96h7eyq0d] {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

/* Navbar Toggler */
.topnav-toggler[b-x96h7eyq0d] {
    border-color: rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.1);
}

.topnav-toggler:focus[b-x96h7eyq0d] {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.topnav-navbar .navbar-toggler-icon[b-x96h7eyq0d] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navigation Links */
.topnav-link[b-x96h7eyq0d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    white-space: nowrap;
    position: relative;
}

.topnav-link[b-x96h7eyq0d]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.topnav-link:hover[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
}

.topnav-link:hover[b-x96h7eyq0d]::before {
    width: 80%;
}

.topnav-link.active[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-weight: 600;
}

.topnav-link.active[b-x96h7eyq0d]::before {
    width: 80%;
}

.topnav-icon[b-x96h7eyq0d] {
    font-size: var(--font-size-lg);
    transition: transform 0.3s ease;
}

.topnav-link:hover .topnav-icon[b-x96h7eyq0d] {
    transform: scale(1.12);
}

.topnav-text[b-x96h7eyq0d] {
    font-size: var(--font-size-sm);
}

/* Override Bootstrap NavLink default colors */
.topnav-navbar .navbar-nav[b-x96h7eyq0d] {
    flex-wrap: wrap;
    row-gap: 0.25rem;
}

.topnav-navbar .navbar-nav .nav-link[b-x96h7eyq0d],
.topnav-navbar .navbar-nav a.nav-link[b-x96h7eyq0d],
.topnav-navbar a.nav-link.topnav-link[b-x96h7eyq0d] {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 0.6rem; /* smaller base padding */
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.topnav-navbar .navbar-nav .nav-link:hover[b-x96h7eyq0d],
.topnav-navbar .navbar-nav a.nav-link:hover[b-x96h7eyq0d],
.topnav-navbar a.nav-link.topnav-link:hover[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.topnav-navbar .navbar-nav .nav-link.active[b-x96h7eyq0d],
.topnav-navbar .navbar-nav a.nav-link.active[b-x96h7eyq0d],
.topnav-navbar a.nav-link.topnav-link.active[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

/* Dropdown Menu Styling - Vibrant green glass effect */
.topnav-dropdown[b-x96h7eyq0d],
.dropdown-menu.topnav-dropdown[b-x96h7eyq0d] {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.92), rgba(37, 99, 235, 0.92)) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.6rem 0 !important;
    margin-top: 0.5rem;
}

.topnav-dropdown-item[b-x96h7eyq0d],
.dropdown-menu.topnav-dropdown .dropdown-item[b-x96h7eyq0d],
.topnav-dropdown .dropdown-item[b-x96h7eyq0d] {
    padding: 0.65rem 1.35rem !important;
    color: #ffffff !important;
    transition: all 0.2s ease;
    font-weight: 500;
    background: transparent !important;
    border-left: 3px solid transparent;
}

.topnav-dropdown-item:hover[b-x96h7eyq0d],
.topnav-dropdown-item:focus[b-x96h7eyq0d],
.dropdown-menu.topnav-dropdown .dropdown-item:hover[b-x96h7eyq0d],
.dropdown-menu.topnav-dropdown .dropdown-item:focus[b-x96h7eyq0d],
.topnav-dropdown .dropdown-item:hover[b-x96h7eyq0d],
.topnav-dropdown .dropdown-item:focus[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-left-color: #ffffff;
    padding-left: 1.55rem !important;
}

.topnav-dropdown-item.active[b-x96h7eyq0d],
.dropdown-menu.topnav-dropdown .dropdown-item.active[b-x96h7eyq0d],
.topnav-dropdown .dropdown-item.active[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-weight: 600;
    border-left-color: #ffffff;
    padding-left: 1.55rem !important;
}

/* Force dropdown item colors */
.topnav-navbar .dropdown-menu .dropdown-item[b-x96h7eyq0d],
.navbar .dropdown-menu.topnav-dropdown .dropdown-item[b-x96h7eyq0d] {
    color: #ffffff !important;
}

.topnav-navbar .dropdown-menu .dropdown-item:hover[b-x96h7eyq0d],
.topnav-navbar .dropdown-menu .dropdown-item:focus[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Branch Selector in Navbar */
.topnav-selector[b-x96h7eyq0d] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.25rem 0;
}

/* Style the DevExpress dropdowns */
.topnav-selector[b-x96h7eyq0d]  .dx-textbox,
.topnav-selector[b-x96h7eyq0d]  .dx-dropdownbox {
    font-size: var(--font-size-xs);
    min-height: 28px;
}

.topnav-selector[b-x96h7eyq0d]  .dx-texteditor-input {
    font-size: var(--font-size-xs);
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.topnav-selector[b-x96h7eyq0d]  .dx-dropdowneditor-button {
    width: 24px;
}

.topnav-selector[b-x96h7eyq0d]  .dx-box-item {
    font-size: var(--font-size-xs);
}

/* Style dropdown menus */
.topnav-selector[b-x96h7eyq0d]  .dx-overlay-content {
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.92), rgba(37, 99, 235, 0.92));
    backdrop-filter: blur(12px);
}

.topnav-selector[b-x96h7eyq0d]  .dx-list-item {
    font-size: var(--font-size-sm);
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    transition: all 0.2s ease;
}

.topnav-selector[b-x96h7eyq0d]  .dx-list-item-selected {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Dropdown dividers */
.topnav-dropdown .dropdown-divider[b-x96h7eyq0d] {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 0.4rem 0;
}

/* User Profile Card - Modern Design */
/* User Profile Card - Compact Design */
.topnav-profile-card[b-x96h7eyq0d] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.75rem;
    /* Reduced padding */
    background: transparent;
    border: none;
    border-radius: 8px;
    /* Slightly smaller radius */
    transition: all 0.3s ease;
    height: 100%;
    /* Match height of other items */
}

.topnav-profile-card:hover[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.1);
}

.topnav-profile-info[b-x96h7eyq0d] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.topnav-avatar[b-x96h7eyq0d] {
    width: 32px;
    /* Smaller avatar */
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.topnav-profile-card:hover .topnav-avatar[b-x96h7eyq0d] {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.topnav-avatar img[b-x96h7eyq0d] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topnav-avatar-icon[b-x96h7eyq0d] {
    font-size: var(--font-size-lg);
}

.topnav-profile-name[b-x96h7eyq0d] {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.topnav-divider-vertical[b-x96h7eyq0d] {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.1rem;
}

/* Logout Button - Compact */
.topnav-logout-icon-btn[b-x96h7eyq0d] {
    width: 32px;
    /* Match avatar size */
    height: 32px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    /* Invisible border distinct from background */
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.topnav-logout-icon-btn:hover[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.topnav-logout-icon-btn:active[b-x96h7eyq0d] {
    transform: translateY(0);
}

/* Login Button - Modern Gradient with Effects */
.topnav-login-btn-new[b-x96h7eyq0d] {
    text-decoration: none;
    line-height: 1;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
    background-color: white;
    color: var(--color-primary-darker);
    border: none;
    cursor: pointer;
    display: inline-flex;
    padding: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 38px;
    align-items: center;
}

.topnav-login-btn-new:hover[b-x96h7eyq0d] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.button-decor[b-x96h7eyq0d] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.button-content[b-x96h7eyq0d] {
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.button__icon[b-x96h7eyq0d] {
    width: 38px;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: grid;
    place-items: center;
    color: white;
}

.button__icon svg[b-x96h7eyq0d] {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.button__text[b-x96h7eyq0d] {
    display: inline-block;
    transition: color 0.3s;
    padding: 0 20px 0 12px;
    white-space: nowrap;
    font-size: 0.9rem;
}

.topnav-login-btn-new:hover .button__text[b-x96h7eyq0d] {
    color: white;
}

.topnav-login-btn-new:hover .button-decor[b-x96h7eyq0d] {
    transform: translateX(0);
}

/* Main Content */
.topnav-main[b-x96h7eyq0d] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-lighter) 50%, #f3f4f6 100%);
}

.topnav-container[b-x96h7eyq0d] {
    flex: 1;
    padding: var(--spacing-sm);
    max-width: 100%;
    margin: 0;
    width: 100%;
}

.topnav-footer[b-x96h7eyq0d] {
    padding: 1.5rem;
    text-align: center;
    color: #1e40af;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border-top: 1px solid #dbeafe;
    margin-top: auto;
    font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .topnav-navbar[b-x96h7eyq0d] {
        padding: 0.6rem 0;
    }

    .topnav-navbar .navbar-collapse[b-x96h7eyq0d] {
        margin-top: 0.75rem;
        padding: 1.25rem;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.92), rgba(37, 99, 235, 0.92));
        border-radius: 12px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        border: none;
        backdrop-filter: blur(12px);
    }

    .topnav-navbar .navbar-collapse .topnav-link[b-x96h7eyq0d] {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .topnav-navbar .navbar-collapse .topnav-link:hover[b-x96h7eyq0d] {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff !important;
    }

    .topnav-navbar .navbar-collapse .topnav-link.active[b-x96h7eyq0d] {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff !important;
    }

    .topnav-selector[b-x96h7eyq0d] {
        padding: 0.75rem 0;
        margin-bottom: 0.5rem;
    }

    .topnav-logo[b-x96h7eyq0d] {
        height: 35px;
    }

    .topnav-brand-text[b-x96h7eyq0d] {
        font-size: var(--font-size-xl);
    }

    .topnav-profile-card[b-x96h7eyq0d] {
        width: 100%;
        padding: 0.8rem;
    }

    .topnav-profile-text[b-x96h7eyq0d] {
        flex: 1;
    }

    .topnav-profile-name[b-x96h7eyq0d] {
        font-size: var(--font-size-sm);
    }

    .topnav-profile-link[b-x96h7eyq0d] {
        font-size: var(--font-size-xs);
    }

    .topnav-dropdown[b-x96h7eyq0d] {
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.92), rgba(37, 99, 235, 0.92));
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.nav-link[b-x96h7eyq0d] {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.nav-link:hover[b-x96h7eyq0d] {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .topnav-container[b-x96h7eyq0d] {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 992px) {
    .topnav-navbar[b-x96h7eyq0d] {
        padding: 0.4rem 0;
    }

    .topnav-selector[b-x96h7eyq0d] {
        padding: 0;
    }

    .topnav-logo[b-x96h7eyq0d] {
        height: 36px;
    }
}

@media (min-width: 1200px) {
    .topnav-container[b-x96h7eyq0d] {
        padding: 3rem 2rem;
    }
    
    .topnav-navbar .navbar-nav .nav-link[b-x96h7eyq0d],
    .topnav-navbar .navbar-nav a.nav-link[b-x96h7eyq0d],
    .topnav-navbar a.nav-link.topnav-link[b-x96h7eyq0d] {
        padding: 0.55rem 0.8rem; /* Medium padding */
    }
}

@media (min-width: 1400px) {
    .topnav-navbar .navbar-nav .nav-link[b-x96h7eyq0d],
    .topnav-navbar .navbar-nav a.nav-link[b-x96h7eyq0d],
    .topnav-navbar a.nav-link.topnav-link[b-x96h7eyq0d] {
        padding: 0.6rem 1.1rem; /* Original full padding */
    }
}

/* Smooth scrollbar styling */
.topnav-navbar .navbar-collapse[b-x96h7eyq0d]::-webkit-scrollbar {
    width: 6px;
}

.topnav-navbar .navbar-collapse[b-x96h7eyq0d]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.topnav-navbar .navbar-collapse[b-x96h7eyq0d]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
}

.topnav-navbar .navbar-collapse[b-x96h7eyq0d]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}
/* /Components/Pages/AdminUsers.razor.rz.scp.css */
/* Modern Admin Users Styling - Core Theme */

.page-container[b-lsvssd8e92] {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header[b-lsvssd8e92] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
    border-bottom: none;
}

.header-content h1[b-lsvssd8e92] {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.25rem 0;
}

.header-content p[b-lsvssd8e92] {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Alerts */
.alert[b-lsvssd8e92] {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    border: none;
}

.alert span:first-child[b-lsvssd8e92] {
    font-size: 1.1rem;
}

.alert-error[b-lsvssd8e92] {
    background-color: #fef2f2;
    color: #ef4444;
}

.alert-success[b-lsvssd8e92] {
    background-color: #f0fdf4;
    color: #10b981;
}

.alert-warning[b-lsvssd8e92] {
    background-color: #fffbeb;
    color: #f59e0b;
}

/* Buttons - BLUE/PURPLE THEME */
.btn[b-lsvssd8e92] {
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn:disabled[b-lsvssd8e92] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-lsvssd8e92] {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover:not(:disabled)[b-lsvssd8e92] {
    background: linear-gradient(135deg, #4338ca 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3);
}

.btn-secondary[b-lsvssd8e92] {
    background-color: white;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover:not(:disabled)[b-lsvssd8e92] {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

.btn-success[b-lsvssd8e92] {
    background-color: #10b981;
    color: white;
}

.btn-success:hover:not(:disabled)[b-lsvssd8e92] {
    background-color: #059669;
}

.btn-danger[b-lsvssd8e92] {
    background-color: #ef4444;
    color: white;
}

.btn-danger:hover:not(:disabled)[b-lsvssd8e92] {
    background-color: #dc2626;
}

.btn-sm[b-lsvssd8e92] {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.btn-close[b-lsvssd8e92] {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #94a3b8;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}

.btn-close:hover[b-lsvssd8e92] {
    color: #475569;
}

/* Card - Soft & Flat */
.card[b-lsvssd8e92] {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border: 1px solid #f1f5f9;
    /* Subtle border */
    margin-bottom: 2rem;
}

.create-user-card[b-lsvssd8e92] {
    animation: slideDown-b-lsvssd8e92 0.3s ease-out;
}

@keyframes slideDown-b-lsvssd8e92 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-header[b-lsvssd8e92] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.card-header h3[b-lsvssd8e92] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.card-body[b-lsvssd8e92] {
    padding: 1.5rem;
}

/* Forms */
.form-grid[b-lsvssd8e92] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group[b-lsvssd8e92] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width[b-lsvssd8e92] {
    grid-column: 1 / -1;
}

.form-group label[b-lsvssd8e92] {
    font-weight: 500;
    color: #475569;
    font-size: 0.85rem;
}

.form-group small[b-lsvssd8e92] {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: -0.25rem;
}

.required[b-lsvssd8e92] {
    color: #ef4444;
}

.form-input[b-lsvssd8e92] {
    padding: 0.6rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    background-color: #fcfcfc;
}

.form-input:focus[b-lsvssd8e92] {
    outline: none;
    border-color: #4f46e5;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input:disabled[b-lsvssd8e92] {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    border-color: #f1f5f9;
}

.form-input-file[b-lsvssd8e92] {
    padding: 0.6rem 1rem;
    border: 2px dashed #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #fcfcfc;
}

.form-input-file:hover[b-lsvssd8e92] {
    border-color: #4f46e5;
    background-color: #eff6ff;
}

.image-preview[b-lsvssd8e92] {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.image-preview img[b-lsvssd8e92] {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.form-actions[b-lsvssd8e92] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

/* Content Grid - Fixed Height for Scrolling */
.content-grid[b-lsvssd8e92] {
    display: grid;
    grid-template-columns: 320px 1fr;
    /* Reduced width for compactness using 320px */
    gap: 1.5rem;
    height: calc(100vh - 180px);
    /* Fixed height to enable scrolling */
    overflow: hidden;
}

.section-header[b-lsvssd8e92] {
    margin-bottom: 0.75rem;
    padding-right: 0.5rem;
}

.section-header h3[b-lsvssd8e92] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Users Section */
.users-section[b-lsvssd8e92] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    padding: 1rem;
}

.users-grid[b-lsvssd8e92] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    padding-right: 0.25rem;
    flex: 1;
}

/* Scrollbar Styling */
.users-grid[b-lsvssd8e92]::-webkit-scrollbar,
[b-lsvssd8e92] .tab-content::-webkit-scrollbar {
    width: 6px;
}

.users-grid[b-lsvssd8e92]::-webkit-scrollbar-track,
[b-lsvssd8e92] .tab-content::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.users-grid[b-lsvssd8e92]::-webkit-scrollbar-thumb,
[b-lsvssd8e92] .tab-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.users-grid[b-lsvssd8e92]::-webkit-scrollbar-thumb:hover,
[b-lsvssd8e92] .tab-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.user-card[b-lsvssd8e92] {
    background: white;
    border: 1px solid #f1f5f9;
    /* Lighter border */
    border-radius: 0.5rem;
    padding: 0.75rem;
    /* Compact padding */
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    box-shadow: none;
    /* Removed shadow for flat look list */
}

.user-card:hover[b-lsvssd8e92] {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.user-card.selected[b-lsvssd8e92] {
    border-color: #4f46e5;
    background: #eef2ff;
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.1);
}

.user-card.pending[b-lsvssd8e92] {
    border-color: #f59e0b;
    border-style: dashed;
    background: #fffbeb;
}

.user-avatar[b-lsvssd8e92] {
    width: 40px;
    /* Smaller avatar */
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.user-avatar img[b-lsvssd8e92] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-info[b-lsvssd8e92] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    /* Tighter gap */
}

.user-name[b-lsvssd8e92] {
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.user-email[b-lsvssd8e92] {
    color: #64748b;
    font-size: 0.8rem;
}

.user-phone[b-lsvssd8e92],
.user-branch[b-lsvssd8e92] {
    color: #94a3b8;
    font-size: 0.75rem;
}

.user-actions[b-lsvssd8e92] {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.user-actions .btn-sm[b-lsvssd8e92] {
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
}

.selected-indicator[b-lsvssd8e92] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Badges */
.badge[b-lsvssd8e92] {
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 600;
}

.badge-warning[b-lsvssd8e92] {
    background-color: #fff7ed;
    color: #c2410c;
    border: 1px solid #ffedd5;
}

/* Permissions Section */
.permissions-section[b-lsvssd8e92] {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.no-selection[b-lsvssd8e92] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Fill available height */
    color: #94a3b8;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px dashed #e2e8f0;
}

.no-selection-icon[b-lsvssd8e92] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.no-selection p[b-lsvssd8e92] {
    font-size: 1rem;
    font-weight: 500;
}

/* User Permission Editor Styles (::deep) */
[b-lsvssd8e92] .permission-editor {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

[b-lsvssd8e92] .editor-header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}

[b-lsvssd8e92] .editor-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

[b-lsvssd8e92] .tabs-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

[b-lsvssd8e92] .tabs-header {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

[b-lsvssd8e92] .tab-button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-lsvssd8e92] .tab-button:hover {
    color: #334155;
    background-color: #f8fafc;
    border-radius: 0.5rem 0.5rem 0 0;
}

[b-lsvssd8e92] .tab-button.active {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

[b-lsvssd8e92] .tab-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
}

[b-lsvssd8e92] .permission-section h4 {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 0.75rem;
    display: none;
    /* Hide redundant header inside tab */
}

[b-lsvssd8e92] .permission-grid {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
}

[b-lsvssd8e92] .permissions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

[b-lsvssd8e92] .permissions-table th {
    background: #f8fafc;
    padding: 0.6rem 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10;
}

[b-lsvssd8e92] .permissions-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    color: #1e293b;
    vertical-align: middle;
}

[b-lsvssd8e92] .permissions-table tr:last-child td {
    border-bottom: none;
}

[b-lsvssd8e92] .permissions-table tr:hover td {
    background-color: #fcfcfc;
}

/* Checkbox styling */
[b-lsvssd8e92] input[type="checkbox"] {
    accent-color: #4f46e5;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    border-radius: 0.25rem;
    border: 1px solid #cbd5e1;
}

/* Empty State */
.empty-state[b-lsvssd8e92] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px dashed #e2e8f0;
}

.empty-icon[b-lsvssd8e92] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: #cbd5e1;
}

.empty-state h3[b-lsvssd8e92] {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.empty-state p[b-lsvssd8e92] {
    color: #64748b;
    margin-bottom: 2rem;
}

/* Loading State */
.loading-state[b-lsvssd8e92] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-lsvssd8e92] {
    width: 40px;
    height: 40px;
    border: 3px solid #f1f5f9;
    border-top-color: #4f46e5;
    border-radius: 50%;
    animation: spin-b-lsvssd8e92 0.8s linear infinite;
    margin: 0 auto 1rem;
}

.spinner-small[b-lsvssd8e92] {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-lsvssd8e92 0.6s linear infinite;
}

@keyframes spin-b-lsvssd8e92 {
    to {
        transform: rotate(360deg);
    }
}

/* Modal */
.modal-overlay[b-lsvssd8e92] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-lsvssd8e92 0.2s ease-out;
}

@keyframes fadeIn-b-lsvssd8e92 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content[b-lsvssd8e92] {
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: slideUp-b-lsvssd8e92 0.3s ease-out;
    border: 1px solid #f1f5f9;
}

.modal-large[b-lsvssd8e92] {
    max-width: 700px;
}

@keyframes slideUp-b-lsvssd8e92 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-lsvssd8e92] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    background: #fcfcfc;
    border-radius: 1rem 1rem 0 0;
}

.modal-header h3[b-lsvssd8e92] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.modal-body[b-lsvssd8e92] {
    padding: 1.5rem;
}

.modal-footer[b-lsvssd8e92] {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: #fcfcfc;
    border-radius: 0 0 1rem 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .content-grid[b-lsvssd8e92] {
        grid-template-columns: 1fr;
        height: auto;
        /* Allow auto height on mobile if needed, or keep scrollable */
    }

    .users-section[b-lsvssd8e92] {
        max-height: 400px;
        /* Limit height on stacked view */
    }
}

@media (max-width: 768px) {
    .page-container[b-lsvssd8e92] {
        padding: 1rem;
    }

    .page-header[b-lsvssd8e92] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-grid[b-lsvssd8e92] {
        grid-template-columns: 1fr;
    }

    .form-group.full-width[b-lsvssd8e92] {
        grid-column: 1;
    }

    .user-card[b-lsvssd8e92] {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-avatar[b-lsvssd8e92] {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .user-actions[b-lsvssd8e92] {
        width: 100%;
        justify-content: stretch;
    }

    .user-actions .btn[b-lsvssd8e92] {
        flex: 1;
        justify-content: center;
    }
}
/* /Components/Pages/EntitySubscriptions.razor.rz.scp.css */
/* Entity Subscriptions Page Styling */
.admin-container[b-6rhjgtoyhs] {
    padding: var(--spacing-2xl);
    max-width: 1600px;
    margin: 0 auto;
}

.admin-header[b-6rhjgtoyhs] {
    margin-bottom: var(--spacing-2xl);
}

.admin-header h2[b-6rhjgtoyhs] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.subtitle[b-6rhjgtoyhs] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
}

/* Subscriptions Panel */
.subscriptions-panel[b-6rhjgtoyhs] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
}

.panel-header[b-6rhjgtoyhs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.panel-header h3[b-6rhjgtoyhs] {
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    margin: 0;
}

.btn-create[b-6rhjgtoyhs] {
    background: linear-gradient(135deg, var(--color-success) 0%, #34d399 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
}

.btn-create:hover[b-6rhjgtoyhs] {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.subscriptions-table[b-6rhjgtoyhs] {
    overflow-x: auto;
    margin-top: var(--spacing-md);
}

.subscriptions-table table[b-6rhjgtoyhs] {
    width: 100%;
    border-collapse: collapse;
}

.subscriptions-table thead[b-6rhjgtoyhs] {
    background: rgba(94, 170, 160, 0.1);
}

.subscriptions-table th[b-6rhjgtoyhs] {
    padding: var(--spacing-md);
    text-align: left;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-bottom: 2px solid rgba(94, 170, 160, 0.2);
}

.subscriptions-table td[b-6rhjgtoyhs] {
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(94, 170, 160, 0.1);
    font-size: var(--font-size-sm);
}

.contact-cell[b-6rhjgtoyhs] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xs);
}

.contact-cell strong[b-6rhjgtoyhs] {
    color: var(--color-primary-dark);
}

.contact-cell small[b-6rhjgtoyhs] {
    color: var(--color-text-secondary);
}

.entity-badge[b-6rhjgtoyhs] {
    display: inline-block;
    padding: var(--spacing-2xs) var(--spacing-sm);
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-info);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-xs);
}

code[b-6rhjgtoyhs] {
    background: rgba(0, 0, 0, 0.05);
    padding: var(--spacing-2xs) var(--spacing-xs);
    border-radius: var(--radius-xs);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.status-badge[b-6rhjgtoyhs] {
    display: inline-block;
    padding: var(--spacing-2xs) var(--spacing-sm);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.status-badge.active[b-6rhjgtoyhs] {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.inactive[b-6rhjgtoyhs] {
    background: #fee2e2;
    color: #991b1b;
}

.btn-toggle-small[b-6rhjgtoyhs],
.btn-delete-small[b-6rhjgtoyhs] {
    padding: 0.375rem var(--spacing-sm);
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    cursor: pointer;
    margin-right: var(--spacing-xs);
    transition: all 0.2s ease;
}

.btn-toggle-small[b-6rhjgtoyhs] {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-info);
}

.btn-toggle-small:hover[b-6rhjgtoyhs] {
    background: var(--color-info);
    color: white;
}

.btn-delete-small[b-6rhjgtoyhs] {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.btn-delete-small:hover[b-6rhjgtoyhs] {
    background: var(--color-error);
    color: white;
}

/* Dialog Styles */
.dialog-overlay[b-6rhjgtoyhs] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dialog-content[b-6rhjgtoyhs] {
    background: white;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.dialog-content.dialog-wide[b-6rhjgtoyhs] {
    max-width: 600px;
}

.loading-inline[b-6rhjgtoyhs] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(94, 170, 160, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
}

.spinner-small[b-6rhjgtoyhs] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(94, 170, 160, 0.2);
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin-b-6rhjgtoyhs 0.8s linear infinite;
}

.dialog-header[b-6rhjgtoyhs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid rgba(94, 170, 160, 0.2);
}

.dialog-header h3[b-6rhjgtoyhs] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-xl);
    margin: 0;
}

.btn-close[b-6rhjgtoyhs] {
    background: none;
    border: none;
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-close:hover[b-6rhjgtoyhs] {
    background: rgba(94, 170, 160, 0.1);
    color: var(--color-primary-dark);
}

.dialog-body[b-6rhjgtoyhs] {
    padding: var(--spacing-xl);
}

.form-group[b-6rhjgtoyhs] {
    margin-bottom: 1.25rem;
}

.form-group label[b-6rhjgtoyhs] {
    display: block;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
}

.form-group small[b-6rhjgtoyhs] {
    display: block;
    color: var(--color-text-secondary);
    font-size: var(--font-size-xs);
    margin-top: var(--spacing-2xs);
}

.form-select[b-6rhjgtoyhs],
.form-input[b-6rhjgtoyhs] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(94, 170, 160, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    transition: all 0.2s ease;
}

.form-select:focus[b-6rhjgtoyhs],
.form-input:focus[b-6rhjgtoyhs] {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(94, 170, 160, 0.1);
}

.error-message[b-6rhjgtoyhs] {
    color: var(--color-error);
    font-size: var(--font-size-sm);
    padding: 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-md);
}

.dialog-footer[b-6rhjgtoyhs] {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    border-top: 1px solid rgba(94, 170, 160, 0.2);
}

.btn-cancel[b-6rhjgtoyhs] {
    padding: 0.75rem 1.5rem;
    border: 1px solid #d1d5db;
    background: white;
    color: #4b5563;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover[b-6rhjgtoyhs] {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-save[b-6rhjgtoyhs] {
    padding: 0.75rem 1.5rem;
    border: none;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6cb896 100%);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-save:hover:not(:disabled)[b-6rhjgtoyhs] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(94, 170, 160, 0.2);
}

.btn-save:disabled[b-6rhjgtoyhs] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading State */
.loading-state[b-6rhjgtoyhs] {
    text-align: center;
    padding: var(--spacing-3xl);
}

.spinner[b-6rhjgtoyhs] {
    border: 4px solid rgba(94, 170, 160, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--color-primary);
    width: 40px;
    height: 40px;
    animation: spin-b-6rhjgtoyhs 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

@keyframes spin-b-6rhjgtoyhs {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-6rhjgtoyhs] {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--color-text-secondary);
}

/* Searchable Entity Select */
.search-select-container[b-6rhjgtoyhs] {
    position: relative;
}

.search-input[b-6rhjgtoyhs] {
    width: 100%;
}

.search-results[b-6rhjgtoyhs] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 1px solid rgba(94, 170, 160, 0.3);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.search-result-item[b-6rhjgtoyhs] {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xs);
    border-bottom: 1px solid rgba(94, 170, 160, 0.1);
}

.search-result-item:hover[b-6rhjgtoyhs] {
    background: rgba(94, 170, 160, 0.1);
}

.search-result-item:last-child[b-6rhjgtoyhs] {
    border-bottom: none;
}

.result-name[b-6rhjgtoyhs] {
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: var(--font-size-sm);
}

.result-desc[b-6rhjgtoyhs] {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
}

.no-results[b-6rhjgtoyhs] {
    padding: 1rem;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.selected-entity[b-6rhjgtoyhs] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    color: #065f46;
    font-weight: 500;
}

.btn-clear[b-6rhjgtoyhs] {
    background: none;
    border: none;
    color: #991b1b;
    cursor: pointer;
    padding: var(--spacing-2xs) var(--spacing-xs);
    font-size: 1rem;
    border-radius: var(--radius-xs);
}

.btn-clear:hover[b-6rhjgtoyhs] {
    background: rgba(239, 68, 68, 0.1);
}
/* /Components/Pages/Index.razor.rz.scp.css */
[b-5h8pztla13] .welcome-gridlayout {
    margin: auto;
    width: auto;
    height: auto;
}

[b-5h8pztla13] .welcome-gridlayout .dxbl-gridlayout-root {
    align-content: center;
    justify-content: center;
}

[b-5h8pztla13] .title {
    text-align: center;
}

[b-5h8pztla13] .welcome-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

[b-5h8pztla13] .welcome-card {
    width: 26.25rem;
    height: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    color: var(--bs-link-color-rgb);
    gap: 1.5rem;
    text-decoration: none;
    position: relative;
}

[b-5h8pztla13] .welcome-card .welcome-card-img {
    width: 6.5rem;
    height: 6.5rem;
}

[b-5h8pztla13] .welcome-card .welcome-card-text {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0em;
    text-align: center;
    text-decoration: unset;
}

[b-5h8pztla13] .icon-fill {
    fill: var(--bs-primary);
}

[b-5h8pztla13] .welcome-card .welcome-card-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bs-body-color);
    opacity: 0.05;
    border-radius: 1rem;
    z-index: -2;
}
/* /Components/Pages/MandayDashboard.razor.rz.scp.css */
/* /Components/Pages/NotificationContacts.razor.rz.scp.css */
/* Notification Contacts Page Styling */
.admin-container[b-9lpm3l63j9] {
    padding: var(--spacing-2xl);
    max-width: 1600px;
    margin: 0 auto;
}

.admin-header[b-9lpm3l63j9] {
    margin-bottom: var(--spacing-2xl);
}

.admin-header h2[b-9lpm3l63j9] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.subtitle[b-9lpm3l63j9] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
}

/* Contacts Panel */
.contacts-panel[b-9lpm3l63j9] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.panel-header[b-9lpm3l63j9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.panel-header h3[b-9lpm3l63j9] {
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    margin: 0;
}

.btn-create[b-9lpm3l63j9] {
    background: linear-gradient(135deg, var(--color-success) 0%, #34d399 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-xs) var(--spacing-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-create:hover[b-9lpm3l63j9] {
    transform: translateY(-1px);
}

/* Contacts Grid */
.contacts-grid[b-9lpm3l63j9] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.contact-card[b-9lpm3l63j9] {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(94, 170, 160, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.contact-card:hover[b-9lpm3l63j9] {
    border-color: rgba(94, 170, 160, 0.4);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-header[b-9lpm3l63j9] {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-avatar[b-9lpm3l63j9] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6cb896 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.contact-details[b-9lpm3l63j9] {
    flex: 1;
    min-width: 0;
}

.contact-details h4[b-9lpm3l63j9] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0 0 var(--spacing-2xs) 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-email[b-9lpm3l63j9] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-group[b-9lpm3l63j9] {
    display: inline-block;
    background: rgba(94, 170, 160, 0.1);
    color: var(--color-primary);
    padding: var(--spacing-2xs) var(--spacing-sm);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.contact-actions[b-9lpm3l63j9] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

.btn-edit[b-9lpm3l63j9] {
    padding: 0.4rem var(--spacing-sm);
    border: none;
    background: var(--color-info);
    color: white;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-9lpm3l63j9] {
    background: #2563eb;
}

.btn-delete[b-9lpm3l63j9] {
    padding: 0.4rem var(--spacing-sm);
    border: none;
    background: var(--color-error);
    color: white;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete:hover[b-9lpm3l63j9] {
    background: #dc2626;
}

/* Dialog Styles */
.dialog-overlay[b-9lpm3l63j9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dialog-content[b-9lpm3l63j9] {
    background: white;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.dialog-header[b-9lpm3l63j9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid rgba(94, 170, 160, 0.2);
}

.dialog-header h3[b-9lpm3l63j9] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-xl);
    margin: 0;
}

.btn-close[b-9lpm3l63j9] {
    background: none;
    border: none;
    font-size: var(--font-size-2xl);
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-close:hover[b-9lpm3l63j9] {
    background: rgba(94, 170, 160, 0.1);
    color: var(--color-primary-dark);
}

.dialog-body[b-9lpm3l63j9] {
    padding: var(--spacing-xl);
}

.form-group[b-9lpm3l63j9] {
    margin-bottom: 1.25rem;
}

.form-group label[b-9lpm3l63j9] {
    display: block;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
}

.form-input[b-9lpm3l63j9] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(94, 170, 160, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

.form-input:focus[b-9lpm3l63j9] {
    outline: none;
    border-color: var(--color-primary);
}

.error-message[b-9lpm3l63j9] {
    color: var(--color-error);
    font-size: var(--font-size-sm);
    padding: 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-md);
}

.dialog-footer[b-9lpm3l63j9] {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    border-top: 1px solid rgba(94, 170, 160, 0.2);
}

.btn-cancel[b-9lpm3l63j9] {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-text-secondary);
    background: white;
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover[b-9lpm3l63j9] {
    background: rgba(107, 114, 128, 0.1);
}

.btn-save[b-9lpm3l63j9] {
    padding: 0.75rem 1.5rem;
    border: none;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6cb896 100%);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-save:hover:not(:disabled)[b-9lpm3l63j9] {
    transform: translateY(-1px);
}

.btn-save:disabled[b-9lpm3l63j9] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading State */
.loading-state[b-9lpm3l63j9] {
    text-align: center;
    padding: var(--spacing-3xl);
}

.spinner[b-9lpm3l63j9] {
    border: 4px solid rgba(94, 170, 160, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--color-primary);
    width: 40px;
    height: 40px;
    animation: spin-b-9lpm3l63j9 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

@keyframes spin-b-9lpm3l63j9 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .contacts-grid[b-9lpm3l63j9] {
        grid-template-columns: 1fr;
    }
}

/* Error Banner */
.error-banner[b-9lpm3l63j9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    color: #991b1b;
}

.btn-dismiss[b-9lpm3l63j9] {
    background: none;
    border: none;
    color: #991b1b;
    cursor: pointer;
    padding: var(--spacing-2xs) var(--spacing-xs);
    font-size: var(--font-size-xl);
    border-radius: var(--radius-xs);
}

.btn-dismiss:hover[b-9lpm3l63j9] {
    background: rgba(239, 68, 68, 0.2);
}
/* /Components/Pages/NotificationLogs.razor.rz.scp.css */
/* ========== Notification Logs Page Styling ========== */
.admin-container[b-c1o07972cg] {
    padding: var(--spacing-xl);
    max-width: 1600px;
    margin: 0 auto;
}

.admin-header[b-c1o07972cg] {
    margin-bottom: var(--spacing-xl);
}

.admin-header h2[b-c1o07972cg] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2xs);
}

.subtitle[b-c1o07972cg] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

/* ========== Logs Panel ========== */
.logs-panel[b-c1o07972cg] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.panel-header[b-c1o07972cg] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.panel-header h3[b-c1o07972cg] {
    color: var(--color-primary);
    font-size: var(--font-size-lg);
    margin: 0;
}

.filter-controls[b-c1o07972cg] {
    display: flex;
    width: 100%;
}

.filter-select[b-c1o07972cg] {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    /* Full width on mobile */
    max-width: 100%;
}

.filter-select:focus[b-c1o07972cg] {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ========== Logs Table (Mobile First - Card View) ========== */
.logs-table[b-c1o07972cg] {
    border-radius: var(--radius-md);
    background: transparent;
}

/* On mobile, the table acts as a container for cards */
.logs-table table[b-c1o07972cg],
.logs-table thead[b-c1o07972cg],
.logs-table tbody[b-c1o07972cg],
.logs-table th[b-c1o07972cg],
.logs-table td[b-c1o07972cg],
.logs-table tr[b-c1o07972cg] {
    display: block;
}

/* Hide table headers on mobile */
.logs-table thead tr[b-c1o07972cg] {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.logs-table tbody tr[b-c1o07972cg] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.logs-table td[b-c1o07972cg] {
    /* Behave like a "row" */
    border: none;
    border-bottom: 1px solid var(--color-border-light);
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
}

.logs-table td:last-child[b-c1o07972cg] {
    border-bottom: 0;
    padding-bottom: 0;
    justify-content: flex-end;
    /* Align actions to right */
}

/* Label for each cell */
.logs-table td[b-c1o07972cg]:before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    text-align: left;
    margin-right: var(--spacing-md);
}

/* Status Badge inside card */
.status-badge[b-c1o07972cg] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.status-badge.success[b-c1o07972cg] {
    background: #d1fae5;
    color: 059669;
}

.status-badge.failed[b-c1o07972cg] {
    background: #fee2e2;
    color: #dc2626;
}

.btn-view[b-c1o07972cg] {
    padding: 6px 16px;
    border: none;
    background: var(--color-primary-light);
    /* Softer button on cards */
    color: var(--color-primary-dark);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    /* Full width button on mobile */
    margin-top: var(--spacing-xs);
}

.btn-view:hover[b-c1o07972cg] {
    background: var(--color-primary);
    color: white;
}

.no-logs[b-c1o07972cg] {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
}

/* ========== Desktop Styles (Min-width: 768px) ========== */
@media (min-width: 768px) {
    .panel-header[b-c1o07972cg] {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .filter-controls[b-c1o07972cg] {
        width: auto;
    }

    .filter-select[b-c1o07972cg] {
        width: auto;
        min-width: 200px;
    }

    .logs-table[b-c1o07972cg] {
        background: white;
        border: 1px solid rgba(37, 99, 235, 0.1);
        overflow-x: auto;
        max-height: 70vh;
        overflow-y: auto;
    }

    .logs-table table[b-c1o07972cg] {
        display: table;
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }

    .logs-table thead[b-c1o07972cg] {
        display: table-header-group;
        background: rgba(243, 244, 246, 0.95);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .logs-table thead tr[b-c1o07972cg] {
        position: static;
    }

    .logs-table tbody[b-c1o07972cg] {
        display: table-row-group;
    }

    .logs-table tr[b-c1o07972cg] {
        display: table-row;
        background: transparent;
        box-shadow: none;
        margin: 0;
        border: none;
    }

    .logs-table tr:hover[b-c1o07972cg] {
        background: rgba(37, 99, 235, 0.05);
    }

    .logs-table th[b-c1o07972cg] {
        display: table-cell;
        padding: var(--spacing-md);
        text-align: left;
        color: var(--color-primary-dark);
        font-weight: 600;
        font-size: var(--font-size-sm);
        border-bottom: 2px solid rgba(37, 99, 235, 0.2);
        white-space: nowrap;
    }

    .logs-table td[b-c1o07972cg] {
        display: table-cell;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        text-align: left;
        border: none;
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }

    .logs-table td[b-c1o07972cg]:before {
        content: none;
    }

    .logs-table td:last-child[b-c1o07972cg] {
        text-align: left;
        justify-content: flex-start;
    }

    .btn-view[b-c1o07972cg] {
        width: auto;
        margin-top: 0;
        background: var(--color-primary);
        color: white;
    }

    .btn-view:hover[b-c1o07972cg] {
        background: var(--color-primary-dark);
    }
}

/* Dialog Styles */
.dialog-overlay[b-c1o07972cg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dialog-content-large[b-c1o07972cg] {
    background: white;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.dialog-header[b-c1o07972cg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.dialog-header h3[b-c1o07972cg] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-xl);
    margin: 0;
}

.btn-close[b-c1o07972cg] {
    background: none;
    border: none;
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-close:hover[b-c1o07972cg] {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary-dark);
}

.dialog-body[b-c1o07972cg] {
    padding: var(--spacing-xl);
}

.detail-section[b-c1o07972cg] {
    margin-bottom: var(--spacing-xl);
}

.detail-section h4[b-c1o07972cg] {
    color: var(--color-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: 0 0 var(--spacing-md) 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    padding-bottom: var(--spacing-xs);
}

.detail-section p[b-c1o07972cg] {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-sm);
}

.detail-grid[b-c1o07972cg] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.detail-item[b-c1o07972cg] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xs);
}

.detail-item label[b-c1o07972cg] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.detail-item span[b-c1o07972cg] {
    color: var(--color-text);
    font-size: var(--font-size-sm);
    word-break: break-word;
}

.error-section[b-c1o07972cg] {
    background: rgba(220, 38, 38, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-error);
}

.error-section p[b-c1o07972cg] {
    color: var(--color-error);
}

.dialog-footer[b-c1o07972cg] {
    display: flex;
    justify-content: flex-end;
    padding: var(--spacing-xl);
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.btn-close-dialog[b-c1o07972cg] {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-text-secondary);
    background: white;
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-dialog:hover[b-c1o07972cg] {
    background: rgba(107, 114, 128, 0.1);
    color: var(--color-text);
}

/* Loading State */
.loading-state[b-c1o07972cg] {
    text-align: center;
    padding: var(--spacing-3xl);
}

.spinner[b-c1o07972cg] {
    border: 4px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--color-primary);
    width: 40px;
    height: 40px;
    animation: spin-b-c1o07972cg 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

@keyframes spin-b-c1o07972cg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .detail-grid[b-c1o07972cg] {
        grid-template-columns: 1fr;
    }

    .logs-table[b-c1o07972cg] {
        max-height: 50vh;
    }
}
/* /Components/Pages/NotificationSubscriptions.razor.rz.scp.css */
/* Notification Subscriptions Page Styling */
.admin-container[b-sofmob9v28] {
    padding: var(--spacing-2xl);
    max-width: 1600px;
    margin: 0 auto;
}

.admin-header[b-sofmob9v28] {
    margin-bottom: var(--spacing-2xl);
}

.admin-header h2[b-sofmob9v28] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.subtitle[b-sofmob9v28] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
}

.subtitle-small[b-sofmob9v28] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Subscriptions Layout */
.subscriptions-layout[b-sofmob9v28] {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-2xl);
    min-height: 600px;
}

/* Contacts List */
.contacts-list[b-sofmob9v28] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contacts-list h3[b-sofmob9v28] {
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    margin: 0 0 var(--spacing-md) 0;
}

.contacts-scroll[b-sofmob9v28] {
    max-height: 70vh;
    overflow-y: auto;
}

.contact-item[b-sofmob9v28] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: var(--spacing-xs);
}

.contact-item:hover[b-sofmob9v28] {
    background: rgba(94, 170, 160, 0.1);
}

.contact-item.selected[b-sofmob9v28] {
    background: rgba(94, 170, 160, 0.2);
    border: 2px solid var(--color-primary);
}

.contact-avatar-small[b-sofmob9v28] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6cb896 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.contact-info[b-sofmob9v28] {
    flex: 1;
    min-width: 0;
}

.contact-name[b-sofmob9v28] {
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: var(--font-size-sm);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-email-small[b-sofmob9v28] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-xs);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Subscriptions Panel */
.subscriptions-panel[b-sofmob9v28] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.panel-header[b-sofmob9v28] {
    margin-bottom: var(--spacing-xl);
}

.panel-header h3[b-sofmob9v28] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-xl);
    margin: 0 0 var(--spacing-2xs) 0;
}

.notifications-list[b-sofmob9v28] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.notification-item[b-sofmob9v28] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(94, 170, 160, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.notification-item:hover[b-sofmob9v28] {
    border-color: rgba(94, 170, 160, 0.4);
    box-shadow: var(--shadow-sm);
}

.notification-info[b-sofmob9v28] {
    flex: 1;
}

.notification-info h4[b-sofmob9v28] {
    color: var(--color-primary-dark);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: 0 0 var(--spacing-2xs) 0;
}

.notification-info p[b-sofmob9v28] {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

.btn-toggle-subscription[b-sofmob9v28] {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 2px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-toggle-subscription:hover[b-sofmob9v28] {
    background: rgba(94, 170, 160, 0.1);
}

.btn-toggle-subscription.subscribed[b-sofmob9v28] {
    background: var(--color-success);
    border-color: var(--color-success);
    color: white;
}

.btn-toggle-subscription.subscribed:hover[b-sofmob9v28] {
    background: #059669;
    border-color: #059669;
}

.no-selection[b-sofmob9v28] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
}

/* Error Toast */
.error-toast[b-sofmob9v28] {
    position: fixed;
    bottom: var(--spacing-2xl);
    right: var(--spacing-2xl);
    background: var(--color-error);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

/* Loading State */
.loading-state[b-sofmob9v28] {
    text-align: center;
    padding: var(--spacing-3xl);
}

.spinner[b-sofmob9v28] {
    border: 4px solid rgba(94, 170, 160, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--color-primary);
    width: 40px;
    height: 40px;
    animation: spin-b-sofmob9v28 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

@keyframes spin-b-sofmob9v28 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .subscriptions-layout[b-sofmob9v28] {
        grid-template-columns: 1fr;
    }

    .contacts-list[b-sofmob9v28] {
        max-height: 300px;
    }
}
/* /Components/Pages/SystemNotifications.razor.rz.scp.css */
/* System Notifications Page Styling */
.admin-container[b-lhwo9jkj7t] {
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.admin-header[b-lhwo9jkj7t] {
    margin-bottom: 2rem;
}

.admin-header h2[b-lhwo9jkj7t] {
    color: #3a6a64;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle[b-lhwo9jkj7t] {
    color: #6b7280;
    font-size: 1rem;
}

/* Notifications Panel */
.notifications-panel[b-lhwo9jkj7t] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.panel-header[b-lhwo9jkj7t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.panel-header h3[b-lhwo9jkj7t] {
    color: #4a8a82;
    font-size: 1.25rem;
    margin: 0;
}

.btn-create[b-lhwo9jkj7t] {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-create:hover[b-lhwo9jkj7t] {
    transform: translateY(-1px);
}

/* Notifications Grid */
.notifications-grid[b-lhwo9jkj7t] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.notification-card[b-lhwo9jkj7t] {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(94, 170, 160, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.notification-card:hover[b-lhwo9jkj7t] {
    border-color: rgba(94, 170, 160, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 170, 160, 0.15);
}

.notification-card.inactive[b-lhwo9jkj7t] {
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.5);
}

.notification-header[b-lhwo9jkj7t] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.notification-header h4[b-lhwo9jkj7t] {
    color: #3a6a64;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.notification-actions[b-lhwo9jkj7t] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-toggle[b-lhwo9jkj7t] {
    padding: 0.4rem 0.75rem;
    border: 1px solid #5eaaa0;
    background: white;
    color: #5eaaa0;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-toggle:hover[b-lhwo9jkj7t] {
    background: rgba(94, 170, 160, 0.1);
}

.btn-edit[b-lhwo9jkj7t] {
    padding: 0.4rem 0.75rem;
    border: none;
    background: #3b82f6;
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-lhwo9jkj7t] {
    background: #2563eb;
}

.btn-delete[b-lhwo9jkj7t] {
    padding: 0.4rem 0.75rem;
    border: none;
    background: #ef4444;
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete:hover[b-lhwo9jkj7t] {
    background: #dc2626;
}

.btn-run[b-lhwo9jkj7t] {
    padding: 0.4rem 0.75rem;
    border: none;
    background: #10b981;
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-run:hover:not(:disabled)[b-lhwo9jkj7t] {
    background: #059669;
}

.btn-run:disabled[b-lhwo9jkj7t] {
    opacity: 0.6;
    cursor: not-allowed;
}

.notification-details[b-lhwo9jkj7t] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-row[b-lhwo9jkj7t] {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.detail-row .label[b-lhwo9jkj7t] {
    color: #6b7280;
    font-weight: 500;
}

.detail-row .value[b-lhwo9jkj7t] {
    color: #3a6a64;
    font-weight: 600;
}

/* Dialog Styles */
.dialog-overlay[b-lhwo9jkj7t] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dialog-content[b-lhwo9jkj7t] {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dialog-header[b-lhwo9jkj7t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(94, 170, 160, 0.2);
}

.dialog-header h3[b-lhwo9jkj7t] {
    color: #3a6a64;
    font-size: 1.25rem;
    margin: 0;
}

.btn-close[b-lhwo9jkj7t] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-close:hover[b-lhwo9jkj7t] {
    background: rgba(94, 170, 160, 0.1);
    color: #3a6a64;
}

.dialog-body[b-lhwo9jkj7t] {
    padding: 1.5rem;
}

.form-group[b-lhwo9jkj7t] {
    margin-bottom: 1.25rem;
}

.form-group label[b-lhwo9jkj7t] {
    display: block;
    color: #3a6a64;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group small[b-lhwo9jkj7t] {
    display: block;
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-input[b-lhwo9jkj7t] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(94, 170, 160, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
}

.form-input:focus[b-lhwo9jkj7t] {
    outline: none;
    border-color: #5eaaa0;
}

.error-message[b-lhwo9jkj7t] {
    color: #dc2626;
    font-size: 0.875rem;
    padding: 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 6px;
    margin-top: 1rem;
}

.success-message[b-lhwo9jkj7t] {
    color: #065f46;
    font-size: 0.875rem;
    padding: 0.75rem;
    background: #d1fae5;
    border-radius: 6px;
    margin-top: 1rem;
    border: 1px solid #10b981;
}

.dialog-footer[b-lhwo9jkj7t] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(94, 170, 160, 0.2);
}

.btn-cancel[b-lhwo9jkj7t] {
    padding: 0.75rem 1.5rem;
    border: 1px solid #6b7280;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover[b-lhwo9jkj7t] {
    background: rgba(107, 114, 128, 0.1);
}

.btn-save[b-lhwo9jkj7t] {
    padding: 0.75rem 1.5rem;
    border: none;
    background: linear-gradient(135deg, #5eaaa0 0%, #6cb896 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-save:hover:not(:disabled)[b-lhwo9jkj7t] {
    transform: translateY(-1px);
}

.btn-save:disabled[b-lhwo9jkj7t] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading State */
.loading-state[b-lhwo9jkj7t] {
    text-align: center;
    padding: 3rem;
}

.spinner[b-lhwo9jkj7t] {
    border: 4px solid rgba(94, 170, 160, 0.1);
    border-radius: 50%;
    border-top: 4px solid #5eaaa0;
    width: 40px;
    height: 40px;
    animation: spin-b-lhwo9jkj7t 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-lhwo9jkj7t {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .notifications-grid[b-lhwo9jkj7t] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/UserClaims.razor.rz.scp.css */
/* User Claims Page Styling */
.claims-container[b-463dtzzxt1] {
    padding: 2rem;
    max-width: 1200px;
}

.selected-context[b-463dtzzxt1] {
    background: rgba(94, 170, 160, 0.08);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.selected-context h5[b-463dtzzxt1] {
    color: #4a8a82;
    margin-bottom: 0.75rem;
}

.selected-context p[b-463dtzzxt1] {
    margin: 0.5rem 0;
}

.permissions-list[b-463dtzzxt1] {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.permissions-list ul[b-463dtzzxt1] {
    list-style: none;
    padding: 0;
}

.permissions-list li[b-463dtzzxt1] {
    padding: 0.5rem;
    margin: 0.25rem 0;
    background: rgba(108, 184, 150, 0.08);
    border-radius: 4px;
    border-left: 3px solid #6cb896;
}

.table[b-463dtzzxt1] {
    margin-top: 1rem;
}

.table th[b-463dtzzxt1] {
    background: rgba(94, 170, 160, 0.1);
    color: #4a8a82;
    font-weight: 600;
}

.table code[b-463dtzzxt1] {
    background: rgba(94, 170, 160, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.875rem;
}
/* /Components/Shared/UserPermissionEditor.razor.rz.scp.css */
/* Permission Editor Styling - Blue/Purple Theme */
.permission-editor[b-pjdg4mxeh4] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.editor-header[b-pjdg4mxeh4] {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.editor-header h3[b-pjdg4mxeh4] {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

/* Tabs Container */
.tabs-container[b-pjdg4mxeh4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tabs-header[b-pjdg4mxeh4] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.tab-button[b-pjdg4mxeh4] {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-button span[b-pjdg4mxeh4] {
    font-size: 1rem;
}

.tab-button:hover[b-pjdg4mxeh4] {
    color: #334155;
    background: #f8fafc;
    border-radius: 0.5rem 0.5rem 0 0;
}

.tab-button.active[b-pjdg4mxeh4] {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

.tab-content[b-pjdg4mxeh4] {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar */
.tab-content[b-pjdg4mxeh4]::-webkit-scrollbar {
    width: 6px;
}

.tab-content[b-pjdg4mxeh4]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.tab-content[b-pjdg4mxeh4]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.tab-content[b-pjdg4mxeh4]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.permission-section h4[b-pjdg4mxeh4] {
    color: #334155;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: none;
    /* Hide redundant header as tabs serve the purpose */
}

.permission-grid[b-pjdg4mxeh4] {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.permissions-table[b-pjdg4mxeh4] {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.85rem;
}

.permissions-table thead[b-pjdg4mxeh4] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f8fafc;
}

.permissions-table th[b-pjdg4mxeh4] {
    padding: 0.6rem 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    font-size: 0.85rem;
    white-space: nowrap;
    border-bottom: 1px solid #e2e8f0;
}

/* Specific column widths if needed, or let table auto-layout */
.permissions-table th:nth-child(n+3)[b-pjdg4mxeh4] {
    text-align: center;
    width: 60px;
}

/* Group Separation */
.permissions-table tbody.permission-group[b-pjdg4mxeh4] {
    border-bottom: 8px solid #f8fafc;
    /* Thick separator using background color */
}

/* Remove border from last group */
.permissions-table tbody.permission-group:last-of-type[b-pjdg4mxeh4] {
    border-bottom: none;
}

.permissions-table td.group-header[b-pjdg4mxeh4] {
    background: #fcfcfc;
    font-weight: 600;
    color: #1e293b;
    border-right: 1px solid #e2e8f0;
    vertical-align: top;
    padding-top: 0.8rem;
}

/* Column Alignment */
.permissions-table th.col-name[b-pjdg4mxeh4],
.permissions-table th.col-module[b-pjdg4mxeh4],
.permissions-table td.col-name[b-pjdg4mxeh4],
.permissions-table td.col-module[b-pjdg4mxeh4] {
    text-align: left;
}

.permissions-table th.col-action[b-pjdg4mxeh4],
.permissions-table td.col-action[b-pjdg4mxeh4] {
    text-align: center;
}

.permissions-table tbody tr:hover td[b-pjdg4mxeh4] {
    background: #f8fafc;
}

.permissions-table tbody tr:last-child td[b-pjdg4mxeh4] {
    border-bottom: none;
}

/* Checkbox Styling */
.permissions-table input[type="checkbox"][b-pjdg4mxeh4] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    accent-color: #4f46e5;
    border-radius: 0.25rem;
    border: 1px solid #cbd5e1;
}

.loading[b-pjdg4mxeh4],
.no-data[b-pjdg4mxeh4] {
    text-align: center;
    padding: 3rem;
    color: #94a3b8;
    font-weight: 500;
}
