@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-gqp1lweerd] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-gqp1lweerd] {
    flex: 1;
}

.sidebar[b-gqp1lweerd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-gqp1lweerd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-gqp1lweerd]  a, .top-row[b-gqp1lweerd]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-gqp1lweerd]  a:hover, .top-row[b-gqp1lweerd]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-gqp1lweerd]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-gqp1lweerd] {
        justify-content: space-between;
    }

    .top-row[b-gqp1lweerd]  a, .top-row[b-gqp1lweerd]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-gqp1lweerd] {
        flex-direction: row;
    }

    .sidebar[b-gqp1lweerd] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-gqp1lweerd] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-gqp1lweerd]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-gqp1lweerd], article[b-gqp1lweerd] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-gqp1lweerd] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-gqp1lweerd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* User menu styles */
.user-menu[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border-color, #e2e8f0);
}

.user-name[b-gqp1lweerd] {
    color: var(--text-muted, #64748b);
    font-size: 0.9rem;
    font-weight: 500;
}

.logout-link[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--text-muted, #64748b) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.logout-link:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #1e3a5f) !important;
    text-decoration: none !important;
}

/* Security/2FA Link */
.security-link[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--text-muted, #64748b) !important;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.security-link:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #1e3a5f) !important;
}

/* Admin Dropdown Menu */
.admin-dropdown[b-gqp1lweerd] {
    position: relative;
}

.admin-toggle[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--text-muted, #64748b);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.admin-toggle:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #0f766e);
}

.dropdown-arrow[b-gqp1lweerd] {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform 0.2s;
}

.admin-menu[b-gqp1lweerd] {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 1100;
    animation: dropdownFadeIn-b-gqp1lweerd 0.15s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes dropdownFadeIn-b-gqp1lweerd {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-menu-item[b-gqp1lweerd] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color, #1e293b);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.admin-menu-item:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #0f766e);
    text-decoration: none;
}

.admin-menu-item.active[b-gqp1lweerd] {
    background: linear-gradient(135deg, var(--primary-color, #0f766e), var(--primary-light, #14b8a6));
    color: white;
}

.menu-icon[b-gqp1lweerd] {
    font-size: 1.125rem;
    line-height: 1;
    width: 1.5rem;
    text-align: center;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-rbsxkdfeey] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-rbsxkdfeey] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-rbsxkdfeey] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-rbsxkdfeey] {
    font-size: 1.1rem;
}

.bi[b-rbsxkdfeey] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-rbsxkdfeey] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-rbsxkdfeey] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-rbsxkdfeey] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-rbsxkdfeey] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-rbsxkdfeey] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-rbsxkdfeey] {
        padding-bottom: 1rem;
    }

    .nav-item[b-rbsxkdfeey]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-rbsxkdfeey]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-rbsxkdfeey]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-rbsxkdfeey] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-rbsxkdfeey] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-rbsxkdfeey] {
        display: none;
    }

    .nav-scrollable[b-rbsxkdfeey] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/TwoFactorSetup.razor.rz.scp.css */
.two-factor-page[b-ujc3m92id6] {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
}

.page-header[b-ujc3m92id6] {
    margin-bottom: 32px;
}

.page-header h1[b-ujc3m92id6] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.page-description[b-ujc3m92id6] {
    color: #64748b;
    margin: 0;
}

/* Security Sections */
.security-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.section-header[b-ujc3m92id6] {
    margin-bottom: 20px;
}

.section-header h2[b-ujc3m92id6] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.section-divider[b-ujc3m92id6] {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 32px 0;
}

/* Password Form */
.password-form[b-ujc3m92id6] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group[b-ujc3m92id6] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-ujc3m92id6] {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.password-requirements[b-ujc3m92id6] {
    margin-top: 12px;
    color: #64748b;
}

.password-strength[b-ujc3m92id6] {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.strength-weak[b-ujc3m92id6] {
    background-color: #fef2f2;
    color: #dc2626;
}

.strength-medium[b-ujc3m92id6] {
    background-color: #fef3c7;
    color: #d97706;
}

.strength-strong[b-ujc3m92id6] {
    background-color: #dcfce7;
    color: #16a34a;
}

.password-mismatch[b-ujc3m92id6] {
    color: #dc2626;
    font-size: 0.85rem;
}

.success-message[b-ujc3m92id6] {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #16a34a;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Status Cards */
.status-card[b-ujc3m92id6] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.status-card.enabled[b-ujc3m92id6] {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #86efac;
}

.status-card.disabled[b-ujc3m92id6] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fcd34d;
}

.status-card.required[b-ujc3m92id6] {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 1px solid #f87171;
}

.status-icon[b-ujc3m92id6] {
    font-size: 3rem;
}

.status-info h2[b-ujc3m92id6] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.status-info p[b-ujc3m92id6] {
    color: #475569;
    margin: 0;
}

.enabled-date[b-ujc3m92id6] {
    font-size: 0.85rem;
    color: #64748b !important;
    margin-top: 8px !important;
}

/* Info Section */
.info-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.info-section h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.info-section ol[b-ujc3m92id6] {
    margin: 0 0 20px 0;
    padding-left: 24px;
    color: #475569;
}

.info-section ol li[b-ujc3m92id6] {
    margin-bottom: 8px;
}

.app-suggestions[b-ujc3m92id6] {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.app-suggestions h4[b-ujc3m92id6] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.app-suggestions ul[b-ujc3m92id6] {
    margin: 0;
    padding-left: 20px;
    color: #64748b;
    font-size: 0.9rem;
}

.app-suggestions ul li[b-ujc3m92id6] {
    margin-bottom: 4px;
}

/* Setup Section */
.setup-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.setup-step[b-ujc3m92id6] {
    margin-bottom: 32px;
}

.setup-step:last-child[b-ujc3m92id6] {
    margin-bottom: 0;
}

.setup-step h3[b-ujc3m92id6] {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.setup-step p[b-ujc3m92id6] {
    color: #64748b;
    margin: 0 0 16px 0;
}

.qr-code[b-ujc3m92id6] {
    display: block;
    margin: 0 auto 16px auto;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.manual-entry[b-ujc3m92id6] {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #64748b;
}

.manual-entry summary[b-ujc3m92id6] {
    cursor: pointer;
    color: #3b82f6;
}

.secret-code[b-ujc3m92id6] {
    display: block;
    margin-top: 8px;
    padding: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.95rem;
    word-break: break-all;
    user-select: all;
}

.code-input[b-ujc3m92id6] {
    width: 180px;
    font-family: monospace;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

/* Backup Codes Section */
.backup-codes-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.backup-codes-section h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.backup-codes-section p[b-ujc3m92id6] {
    color: #475569;
    margin: 0 0 12px 0;
}

.backup-codes-display[b-ujc3m92id6] {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.backup-codes-display h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 8px 0;
}

.codes-grid[b-ujc3m92id6] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.code[b-ujc3m92id6] {
    font-family: monospace;
    font-size: 1rem;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-align: center;
    user-select: all;
}

/* Danger Zone */
.danger-zone[b-ujc3m92id6] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 24px;
}

.danger-zone h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #991b1b;
    margin: 0 0 8px 0;
}

.danger-zone p[b-ujc3m92id6] {
    color: #7f1d1d;
    margin: 0 0 16px 0;
}

.confirm-disable[b-ujc3m92id6] {
    margin-top: 16px;
}

.confirm-disable .form-input[b-ujc3m92id6] {
    width: 100%;
    max-width: 300px;
    margin-bottom: 12px;
}

.confirm-buttons[b-ujc3m92id6] {
    display: flex;
    gap: 12px;
}

/* Form Inputs */
.form-input[b-ujc3m92id6] {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus[b-ujc3m92id6] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Buttons */
.btn[b-ujc3m92id6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:disabled[b-ujc3m92id6] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-ujc3m92id6] {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-ujc3m92id6] {
    background: #2563eb;
}

.btn-secondary[b-ujc3m92id6] {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover:not(:disabled)[b-ujc3m92id6] {
    background: #e2e8f0;
}

.btn-danger[b-ujc3m92id6] {
    background: #dc2626;
    color: white;
}

.btn-danger:hover:not(:disabled)[b-ujc3m92id6] {
    background: #b91c1c;
}

/* Messages */
.warning[b-ujc3m92id6] {
    color: #92400e;
    background: #fffbeb;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.error[b-ujc3m92id6] {
    color: #dc2626;
    font-size: 0.9rem;
}

.error-message[b-ujc3m92id6] {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Modal */
.modal-overlay[b-ujc3m92id6] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-ujc3m92id6] {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn-b-ujc3m92id6 0.3s ease;
}

@keyframes modalSlideIn-b-ujc3m92id6 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.backup-codes-modal h2[b-ujc3m92id6] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.backup-codes-modal > p[b-ujc3m92id6] {
    color: #475569;
    margin: 0 0 12px 0;
}

.modal-actions[b-ujc3m92id6] {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.loading[b-ujc3m92id6] {
    text-align: center;
    padding: 48px;
    color: #64748b;
}
/* /Components/Shared/InactivityTracker.razor.rz.scp.css */
/* Inactivity Tracker Styles */

.inactivity-overlay[b-44wbhcxinu] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn-b-44wbhcxinu 0.2s ease-out;
}

@keyframes fadeIn-b-44wbhcxinu {
    from { opacity: 0; }
    to { opacity: 1; }
}

.inactivity-dialog[b-44wbhcxinu] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-44wbhcxinu 0.3s ease-out;
}

@keyframes slideUp-b-44wbhcxinu {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inactivity-icon[b-44wbhcxinu] {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse-b-44wbhcxinu 1s infinite;
}

@keyframes pulse-b-44wbhcxinu {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.inactivity-dialog h3[b-44wbhcxinu] {
    color: #1e293b;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.inactivity-dialog p[b-44wbhcxinu] {
    color: #64748b;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.inactivity-dialog strong[b-44wbhcxinu] {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
}

.inactivity-actions[b-44wbhcxinu] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.inactivity-actions .btn[b-44wbhcxinu] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.inactivity-actions .btn-primary[b-44wbhcxinu] {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
}

.inactivity-actions .btn-primary:hover[b-44wbhcxinu] {
    background: linear-gradient(135deg, #0d6560, #0f9488);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.inactivity-actions .btn-secondary[b-44wbhcxinu] {
    background: #f1f5f9;
    color: #475569;
}

.inactivity-actions .btn-secondary:hover[b-44wbhcxinu] {
    background: #e2e8f0;
}
