/* /Components/Features/Auth/Components/ChangePasswordModal.razor.rz.scp.css */
.password-wrapper[b-qjohfi8aks] {
    position: relative;
}

.password-toggle[b-qjohfi8aks] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    padding: 4px 6px;
    font-size: 1rem;
    z-index: 1;
}

.password-toggle:hover[b-qjohfi8aks] {
    color: #495057;
}
/* /Components/Features/Auth/Components/ForcePasswordChangeModal.razor.rz.scp.css */
.password-wrapper[b-r8ogqyl5ul] {
    position: relative;
}

.password-toggle[b-r8ogqyl5ul] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    padding: 4px 6px;
    font-size: 1rem;
    z-index: 1;
}

.password-toggle:hover[b-r8ogqyl5ul] {
    color: #495057;
}

.force-password-modal[b-r8ogqyl5ul] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.force-password-modal .modal-content[b-r8ogqyl5ul] {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn-b-r8ogqyl5ul 0.3s ease-out;
}

@keyframes modalSlideIn-b-r8ogqyl5ul {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.force-password-modal .modal-header[b-r8ogqyl5ul] {
    margin-bottom: 24px;
    text-align: center;
}

.force-password-modal .modal-title[b-r8ogqyl5ul] {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.force-password-modal .modal-subtitle[b-r8ogqyl5ul] {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.force-password-modal .modal-body[b-r8ogqyl5ul] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.force-password-modal .form-field[b-r8ogqyl5ul] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.force-password-modal .password-requirements[b-r8ogqyl5ul] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.force-password-modal .requirements-title[b-r8ogqyl5ul] {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.force-password-modal .requirements-list[b-r8ogqyl5ul] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.force-password-modal .requirements-list li[b-r8ogqyl5ul] {
    font-size: 12px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.force-password-modal .requirements-list li[b-r8ogqyl5ul]::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #007bff;
    font-weight: bold;
}

.force-password-modal .message[b-r8ogqyl5ul] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.force-password-modal .message.success[b-r8ogqyl5ul] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.force-password-modal .message.error[b-r8ogqyl5ul] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.force-password-modal .modal-actions[b-r8ogqyl5ul] {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.force-password-modal .dx-button-fullwidth[b-r8ogqyl5ul] {
    width: 100%;
}
/* /Components/Features/Auth/Components/UserProfile.razor.rz.scp.css */
.user-profile[b-grjrkkvcy5] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

    .user-profile:hover[b-grjrkkvcy5] {
        background-color: rgba(var(--neutral-100), 0.5);
    }

.user-avatar[b-grjrkkvcy5] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(var(--neutral-200));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-initials[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(var(--text-50));
    user-select: none;
}

.user-info[b-grjrkkvcy5] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.user-name[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgb(var(--text-50));
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-subtitle[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgb(var(--text-400));
    line-height: 1.2;
    white-space: nowrap;
}

.dropdown-arrow[b-grjrkkvcy5] {
    color: rgb(var(--text-400));
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

    .dropdown-arrow.open[b-grjrkkvcy5] {
        transform: rotate(180deg);
    }

.user-profile-dropdown[b-grjrkkvcy5] {
    position: relative;
}

    .user-profile-dropdown .dropdown-menu[b-grjrkkvcy5] {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        min-width: 280px;
        margin-top: 0.5rem;
        padding: 0;
        background-color: white;
        border: 1px solid rgb(var(--neutral-200));
        border-radius: 12px;
        box-shadow: var(--shadow-low), 0 4px 16px rgba(0, 0, 0, 0.12);
        z-index: 1000;
        overflow: hidden;
    }

        .user-profile-dropdown .dropdown-menu.show[b-grjrkkvcy5] {
            animation: dropdownFadeIn-b-grjrkkvcy5 0.15s ease-out;
        }

@keyframes dropdownFadeIn-b-grjrkkvcy5 {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-profile-dropdown .dropdown-header[b-grjrkkvcy5] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0;
    background-color: rgb(var(--back-50));
    color: inherit;
    white-space: normal;
}

.dropdown-user-avatar[b-grjrkkvcy5] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgb(var(--neutral-200));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 1rem 0 1rem 1rem;
}

.dropdown-user-initials[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    font-weight: 600;
    color: rgb(var(--text-50));
    user-select: none;
}

.dropdown-user-details[b-grjrkkvcy5] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
    padding: 1rem 1rem 1rem 0;
}

.dropdown-user-name[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgb(var(--text-50));
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-user-email[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgb(var(--text-400));
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-profile-dropdown .dropdown-divider[b-grjrkkvcy5] {
    height: 1px;
    background-color: rgb(var(--neutral-200));
    margin: 0;
    border: none;
}

.user-profile-dropdown .dropdown-item[b-grjrkkvcy5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: none;
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(var(--text-100));
    cursor: pointer;
    transition: background-color 0.15s ease;
    text-align: left;
}

    .user-profile-dropdown .dropdown-item:hover[b-grjrkkvcy5],
    .user-profile-dropdown .dropdown-item:focus[b-grjrkkvcy5] {
        background-color: rgb(var(--back-50));
        color: rgb(var(--text-100));
    }

    .user-profile-dropdown .dropdown-item svg[b-grjrkkvcy5] {
        flex-shrink: 0;
        color: rgb(var(--text-300));
    }

.user-profile-dropdown .dropdown-item-danger[b-grjrkkvcy5] {
    color: rgb(var(--danger-600));
}

    .user-profile-dropdown .dropdown-item-danger:hover[b-grjrkkvcy5],
    .user-profile-dropdown .dropdown-item-danger:focus[b-grjrkkvcy5] {
        background-color: rgba(var(--danger-50), 0.5);
        color: rgb(var(--danger-600));
    }

    .user-profile-dropdown .dropdown-item-danger svg[b-grjrkkvcy5] {
        color: rgb(var(--danger-600));
    }

.dropdown-backdrop[b-grjrkkvcy5] {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.modal-overlay[b-grjrkkvcy5] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: modalFadeIn-b-grjrkkvcy5 0.2s ease-out;
}

@keyframes modalFadeIn-b-grjrkkvcy5 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content[b-grjrkkvcy5] {
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-high);
    width: 100%;
    max-width: 420px;
    margin: 1rem;
    animation: modalSlideIn-b-grjrkkvcy5 0.2s ease-out;
}

@keyframes modalSlideIn-b-grjrkkvcy5 {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header[b-grjrkkvcy5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgb(var(--neutral-200));
    background-color: rgb(var(--back-50));
}

.modal-logo[b-grjrkkvcy5] {
    height: 24px;
    width: auto;
}

.modal-close[b-grjrkkvcy5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    border-radius: 8px;
    cursor: pointer;
    color: rgb(var(--text-300));
    transition: all 0.15s ease;
}

    .modal-close:hover[b-grjrkkvcy5] {
        background-color: rgb(var(--back-100));
        color: rgb(var(--text-100));
    }

.modal-body[b-grjrkkvcy5] {
    padding: 1.5rem;
}

.profile-hero[b-grjrkkvcy5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.25rem;
}

.profile-avatar-large[b-grjrkkvcy5] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(var(--primary-500)), rgb(var(--primary-600)));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    box-shadow: 0 4px 12px rgba(var(--primary-500), 0.25);
}

.profile-initials-large[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    user-select: none;
}

.profile-name[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(var(--text-50));
    margin: 0 0 0.25rem 0;
}

.profile-email[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgb(var(--text-400));
}

.profile-details[b-grjrkkvcy5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.profile-card[b-grjrkkvcy5] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.875rem;
    background-color: rgb(var(--back-50));
    border-radius: 8px;
    border: 1px solid rgb(var(--neutral-200));
}

.profile-label[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgb(var(--text-400));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-value[b-grjrkkvcy5] {
    font-family: var(--font-family-primary);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgb(var(--text-100));
}

.profile-provider[b-grjrkkvcy5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .profile-provider span[b-grjrkkvcy5] {
        font-family: var(--font-family-primary);
        font-size: 0.8125rem;
        font-weight: 500;
        color: rgb(var(--text-100));
    }

.icon-microsoft-small[b-grjrkkvcy5] {
    flex-shrink: 0;
}

.modal-footer[b-grjrkkvcy5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgb(var(--neutral-200));
    background-color: rgb(var(--back-50));
}

.modal-logo-footer[b-grjrkkvcy5] {
    height: 20px;
    width: auto;
    opacity: 0.7;
}

.modal-button[b-grjrkkvcy5] {
    padding: 0.625rem 1.25rem;
    border: 1px solid rgb(var(--neutral-300));
    background-color: white;
    border-radius: 8px;
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(var(--text-100));
    cursor: pointer;
    transition: all 0.15s ease;
}

    .modal-button:hover[b-grjrkkvcy5] {
        background-color: rgb(var(--back-50));
        border-color: rgb(var(--neutral-400));
    }

@media (max-width: 768px) {
    .user-avatar[b-grjrkkvcy5] {
        width: 36px;
        height: 36px;
    }

    .user-initials[b-grjrkkvcy5] {
        font-size: 0.75rem;
    }

    .user-name[b-grjrkkvcy5] {
        font-size: 0.875rem;
    }

    .user-subtitle[b-grjrkkvcy5] {
        font-size: 0.75rem;
    }

    .user-profile-dropdown .dropdown-menu[b-grjrkkvcy5] {
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .user-avatar[b-grjrkkvcy5] {
        width: 32px;
        height: 32px;
    }

    .user-initials[b-grjrkkvcy5] {
        font-size: 0.6875rem;
    }

    .user-info[b-grjrkkvcy5] {
        display: none;
    }

    .dropdown-arrow[b-grjrkkvcy5] {
        display: none;
    }

    .user-profile-dropdown .dropdown-menu[b-grjrkkvcy5] {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        min-width: 100%;
        border-radius: 16px 16px 0 0;
    }

    .modal-content[b-grjrkkvcy5] {
        max-width: 100%;
        margin: 0;
        border-radius: 16px 16px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }
}
/* /Components/Features/Auth/Pages/Profile.razor.rz.scp.css */
/* Content Container */
.content[b-z9bo6qts3j] {
    width: 100%;
    max-width: 400px;
    position: relative;
    flex-shrink: 0;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgb(var(--back-200));
    border-radius: 8px;
}

/* Loading Overlay */
.overlay[b-z9bo6qts3j] {
    position: absolute;
    inset: 0;
    z-index: 10;
    border-radius: 8px;
}

/* Header Section */
.header[b-z9bo6qts3j] {
    margin-bottom: 1.5rem;
    text-align: center;
}

.title[b-z9bo6qts3j] {
    font-family: var(--font-family-primary);
    font-size: 1.375rem;
    font-weight: 600;
    color: rgb(var(--text-50));
    margin: 0 0 0.375rem 0;
}

.subtitle[b-z9bo6qts3j] {
    font-family: var(--font-family-primary);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgb(var(--text-400));
    margin: 0;
    line-height: 1.4;
}

/* Form Section */
.form[b-z9bo6qts3j] {
    display: flex;
    flex-direction: column;
}

/* Field Article */
.field[b-z9bo6qts3j] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.875rem;
}

/* Profile Info */
.profile-info[b-z9bo6qts3j] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgb(var(--back-300));
    border-radius: 6px;
}

.info-row[b-z9bo6qts3j] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgb(var(--neutral-200));
}

.info-row:last-child[b-z9bo6qts3j] {
    border-bottom: none;
}

.info-row .label[b-z9bo6qts3j] {
    font-family: var(--font-family-primary);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgb(var(--text-400));
}

.info-row .value[b-z9bo6qts3j] {
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgb(var(--text-50));
}

/* Message Article */
.message[b-z9bo6qts3j] {
    min-height: 2rem;
    margin-bottom: 1rem;
}

.error[b-z9bo6qts3j] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background-color: rgba(var(--danger-50), 0.5);
    border: 1px solid rgb(var(--danger-200));
    border-radius: 6px;
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    color: rgb(var(--danger-700));
}

.success[b-z9bo6qts3j] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background-color: rgba(var(--success-50), 0.5);
    border: 1px solid rgb(var(--success-200));
    border-radius: 6px;
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    color: rgb(var(--success-700));
}

.error .icon[b-z9bo6qts3j],
.success .icon[b-z9bo6qts3j] {
    flex-shrink: 0;
}

/* Actions Article */
.actions[b-z9bo6qts3j] {
    margin-bottom: 0.875rem;
}
/* /Components/Features/Auth/Pages/SignIn.razor.rz.scp.css */
/* Password visibility toggle */
.password-wrapper[b-wp5skpkw0u] {
    position: relative;
}

.password-toggle[b-wp5skpkw0u] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    padding: 4px 6px;
    font-size: 1rem;
    z-index: 1;
}

.password-toggle:hover[b-wp5skpkw0u] {
    color: #495057;
}

/* Fix para el color feo de hover/focus en inputs DevExpress */
[b-wp5skpkw0u] .dxbl-textbox.dxbl-textbox-input-container:hover {
    background-color: #f8f9fa !important;
    border-color: #ced4da !important;
}

[b-wp5skpkw0u] .dxbl-textbox.dxbl-textbox-input-container:focus-within {
    background-color: #ffffff !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

[b-wp5skpkw0u] .dxbl-textbox .dxbl-textbox-input:hover {
    background-color: transparent !important;
}

[b-wp5skpkw0u] .dxbl-textbox .dxbl-textbox-input:focus {
    background-color: transparent !important;
    outline: none !important;
}

/* Si prefieres desactivar completamente el hover */
[b-wp5skpkw0u] .dxbl-textbox.dxbl-textbox-input-container:hover {
    background-color: #ffffff !important;
    border-color: #dee2e6 !important;
}

.signin-wrapper[b-wp5skpkw0u] {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

/* Encabezados y Textos */
.signin-header[b-wp5skpkw0u] {
    text-align: center;
    margin-bottom: 2rem;
}

    .signin-header h1[b-wp5skpkw0u] {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--bs-body-color); /* Hereda del tema */
    }

    .signin-header p[b-wp5skpkw0u] {
        color: var(--bs-secondary-color);
        margin: 0;
    }

/* Links (Olvidé contraseña / Otra cuenta) */
.link-small[b-wp5skpkw0u] {
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--dxbl-primary); /* Usa el color principal de DevExpress */
    cursor: pointer;
}

    .link-small:hover[b-wp5skpkw0u] {
        text-decoration: underline;
    }

/* Separador "o" */
.divider[b-wp5skpkw0u] {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--bs-secondary-color);
}

    .divider[b-wp5skpkw0u]::before,
    .divider[b-wp5skpkw0u]::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid var(--bs-border-color);
    }

    .divider span[b-wp5skpkw0u] {
        padding: 0 10px;
        font-size: 0.875rem;
    }

/* Estilo MÍNIMO para el botón de Microsoft */
/* Solo ajustamos el color del texto para que no sea azul, sino el del cuerpo */
/* --- BOTÓN MICROSOFT OFICIAL (Estilo Light) --- */

/* Contenedor base del botón (Sobreescribe estilos Dx) */
[b-wp5skpkw0u] .ms-btn {
    background-color: #ffffff;
    border: 1px solid #8c8c8c; /* Gris específico de MS */
    border-radius: 0px; /* Microsoft usa bordes cuadrados o muy poco redondeados (2px) */
    color: #5e5e5e;
    font-family: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 600;
    height: 41px; /* Altura oficial */
    padding: 0 12px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: flex; /* Asegura layout correcto */
    align-items: center;
    justify-content: center;
}

/* Alineación interna */
.ms-content[b-wp5skpkw0u] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Espacio entre logo y texto */
    width: 100%;
}

.ms-logo[b-wp5skpkw0u] {
    display: block;
    flex-shrink: 0;
}

.ms-text[b-wp5skpkw0u] {
    line-height: 1;
    margin-top: 1px; /* Ajuste óptico de fuente Segoe */
}

/* --- ESTADOS (Hover / Active / Focus) --- */

/* Hover: Fondo gris muy suave */
[b-wp5skpkw0u] .ms-btn:hover {
    background-color: #f4f4f4 !important; /* Importante para ganar a Dx */
    color: #5e5e5e !important;
    border-color: #8c8c8c !important;
}

/* Active (Click): Fondo un poco más oscuro */
[b-wp5skpkw0u] .ms-btn:active {
    background-color: #e8e8e8 !important;
    border-color: #8c8c8c !important;
    transform: none; /* Evitamos el salto por defecto */
}

/* Focus: Ring punteado o suave (Accesibilidad) */
[b-wp5skpkw0u] .ms-btn:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
    box-shadow: none !important; /* Quitamos la sombra azul de Dx */
}

/* Disabled */
[b-wp5skpkw0u] .ms-btn.dxbl-btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #fff !important;
}
/* /Components/Features/Monitoring/Components/Monitoring/MonitoringForm.razor.rz.scp.css */
.detail-label[b-u9qnde4abq] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 2px;
    display: block;
}

.detail-value[b-u9qnde4abq] {
    font-size: 0.9rem;
    color: #212529;
    word-break: break-word;
}

.select-all[b-u9qnde4abq] {
    user-select: all;
    background-color: #f8f9fa;
    padding: 2px 5px;
    border-radius: 4px;
}
/* /Components/Features/Monitoring/Pages/Monitoring.razor.rz.scp.css */
 /* Layout Principal - Centrado Absoluto */
.monitoring-container[b-rxxekgpd83] {
    padding: 2rem;
    width: 100%;
    min-height: calc(100vh - 100px); /* Resta el header si tienes uno */
    display: flex;
    align-items: center; /* Centrado Vertical */
    justify-content: center; /* Centrado Horizontal */
}

/* --- HERO SECTION --- */
.monitoring-hero[b-rxxekgpd83] {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 4rem;
    max-width: 900px;
    width: 100%;
}

/* Visual Abstracto */
.hero-visual[b-rxxekgpd83] {
    flex: 0 0 180px; /* Un poco más grande */
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--dxbl-primary-rgb), 0.05);
    border-radius: 50%;
    position: relative;
    color: var(--dxbl-primary);
}

.abstract-pulse[b-rxxekgpd83] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring[b-rxxekgpd83] {
    position: absolute;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1[b-rxxekgpd83] {
    width: 60%;
    height: 60%;
    animation: pulse-ring-b-rxxekgpd83 3s infinite ease-out;
}

.ring-2[b-rxxekgpd83] {
    width: 100%;
    height: 100%;
    animation: pulse-ring-b-rxxekgpd83 3s infinite ease-out 1s;
}

.pulse-core[b-rxxekgpd83] {
    width: 25px;
    height: 25px;
    background-color: currentColor;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px currentColor;
}

.activity-line[b-rxxekgpd83] {
    position: absolute;
    width: 140%;
    height: 50px;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    opacity: 0.5;
    z-index: 1;
}

@keyframes pulse-ring-b-rxxekgpd83 {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Contenido de Texto */
.hero-content[b-rxxekgpd83] {
    flex: 1;
}

    .hero-content h1[b-rxxekgpd83] {
        font-size: 2.75rem;
        font-weight: 800;
        margin-bottom: 1.25rem;
        color: var(--bs-body-color);
        letter-spacing: -1px;
    }

    .hero-content p[b-rxxekgpd83] {
        font-size: 1.15rem;
        color: var(--bs-secondary-color);
        line-height: 1.7;
        margin: 0;
    }

/* Responsividad */
@media (max-width: 768px) {
    .monitoring-hero[b-rxxekgpd83] {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 2rem;
    }

    .hero-visual[b-rxxekgpd83] {
        width: 140px;
        height: 140px;
        flex: 0 0 140px;
    }
}
/* /Components/Features/Monitoring/Pages/MonitoringOrders.razor.rz.scp.css */
[b-vbl83wagvz] .dxbl-grid-header-row {
    background-color: #f8f9fa !important;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #6c757d;
}

[b-vbl83wagvz] .dxbl-grid-row td {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    vertical-align: middle;
    font-size: 0.85rem;
}

.id-badge[b-vbl83wagvz] {
    font-family: var(--bs-font-monospace);
    font-size: 0.75rem;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    display: inline-block;
}
/* /Components/Features/Monitoring/Pages/MonitoringPayments.razor.rz.scp.css */
[b-scd7tsjt3d] .monitoring-grid {
    height: 100%;
    width: calc(100vw - 300px);
}

[b-scd7tsjt3d] .dxbl-grid-header-row {
    background-color: #f8f9fa !important;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #6c757d;
}

[b-scd7tsjt3d] .dxbl-grid-row td {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    vertical-align: middle;
    font-size: 0.85rem;
}

.id-badge[b-scd7tsjt3d] {
    font-family: var(--bs-font-monospace);
    font-size: 0.75rem;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    display: inline-block;
}

/* Progress bar */
.progress-sm[b-scd7tsjt3d] {
    border-radius: 4px;
    overflow: hidden;
    background-color: #e9ecef;
}

    .progress-sm .progress-bar[b-scd7tsjt3d] {
        transition: width 0.4s ease;
    }
/* /Components/Features/Monitoring/Pages/MonitoringTransactions.razor.rz.scp.css */
[b-qp9p1cqbwa] .monitoring-grid {
    height: 100%;
    width: calc(100vw - 300px);
}

[b-qp9p1cqbwa] .dxbl-grid-header-row {
    background-color: #f8f9fa !important;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #6c757d;
}

[b-qp9p1cqbwa] .dxbl-grid-row td {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    vertical-align: middle;
    font-size: 0.85rem;
}

.id-badge[b-qp9p1cqbwa] {
    font-family: var(--bs-font-monospace);
    font-size: 0.75rem;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    display: inline-block;
}

/* Progress bar */
.progress-sm[b-qp9p1cqbwa] {
    border-radius: 4px;
    overflow: hidden;
    background-color: #e9ecef;
}

    .progress-sm .progress-bar[b-qp9p1cqbwa] {
        transition: width 0.4s ease;
    }
/* /Components/Features/Operations/Pages/Operations.razor.rz.scp.css */
/* Layout Principal - Centrado Absoluto */
.operations-container[b-xyfm59q8vz] {
    padding: 2rem;
    width: 100%;
    min-height: calc(100vh - 100px); /* Resta el header si tienes uno */
    display: flex;
    align-items: center; /* Centrado Vertical */
    justify-content: center; /* Centrado Horizontal */
}

/* --- HERO SECTION --- */
.operations-hero[b-xyfm59q8vz] {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 4rem;
    max-width: 900px;
    width: 100%;
}

/* Visual Abstracto - Temática Operaciones (Naranja) */
.hero-visual[b-xyfm59q8vz] {
    flex: 0 0 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 140, 0, 0.08); /* Fondo naranja muy sutil */
    color: #FF8C00; /* Color primario de Operaciones según tu JSON */
    border-radius: 50%;
    position: relative;
}

.abstract-process[b-xyfm59q8vz] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Linea de Proceso */
.process-line[b-xyfm59q8vz] {
    position: absolute;
    width: 130%; /* Sobresale un poco del círculo para dar sensación de entrada/salida */
    height: auto;
    z-index: 2;
}

/* Animación del flujo de datos (línea punteada que avanza) */
.flow-path[b-xyfm59q8vz] {
    animation: flow-march-b-xyfm59q8vz 1.5s linear infinite;
}

@keyframes flow-march-b-xyfm59q8vz {
    from {
        stroke-dashoffset: 12;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Efectos de resplandor (Glow) detrás de los nodos del SVG */
.process-node[b-xyfm59q8vz] {
    position: absolute;
    border-radius: 50%;
    background-color: currentColor;
    filter: blur(8px);
    z-index: 1;
}

.node-start[b-xyfm59q8vz] {
    width: 25px;
    height: 25px;
    left: -5%;
    top: 45%;
    animation: pulse-node-b-xyfm59q8vz 2s infinite alternate;
}

.node-core[b-xyfm59q8vz] {
    width: 45px;
    height: 45px;
    left: 45%;
    top: 25%;
    animation: pulse-node-b-xyfm59q8vz 2.5s infinite alternate-reverse;
}

.node-end[b-xyfm59q8vz] {
    width: 25px;
    height: 25px;
    right: -5%;
    top: 45%;
    animation: pulse-node-b-xyfm59q8vz 2s infinite alternate 1s;
}

@keyframes pulse-node-b-xyfm59q8vz {
    0% {
        transform: scale(0.7);
        opacity: 0.15;
    }

    100% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

/* Contenido de Texto */
.hero-content[b-xyfm59q8vz] {
    flex: 1;
}

    .hero-content h1[b-xyfm59q8vz] {
        font-size: 2.75rem;
        font-weight: 800;
        margin-bottom: 1.25rem;
        color: var(--bs-body-color);
        letter-spacing: -1px;
    }

    .hero-content p[b-xyfm59q8vz] {
        font-size: 1.15rem;
        color: var(--bs-secondary-color);
        line-height: 1.7;
        margin: 0;
    }

/* Responsividad */
@media (max-width: 768px) {
    .operations-hero[b-xyfm59q8vz] {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 2rem;
    }

    .hero-visual[b-xyfm59q8vz] {
        width: 140px;
        height: 140px;
        flex: 0 0 140px;
    }
}
/* /Components/Features/Settings/Components/AuditLog/AuditLogDetailModal.razor.rz.scp.css */
[b-9i72eufhma] .dx-grid-data {
    height: 500px !important;
}
/* /Components/Features/Settings/Components/Catalogs/CatalogsDesign.razor.rz.scp.css */
.h-100.d-flex.flex-column[b-2xo709ihlj] {
    height: calc(100vh - 90px) !important;
    overflow: hidden;
}
/* /Components/Features/Settings/Components/Filters/FilterTreeList.razor.rz.scp.css */
.filter-treelist[b-ouzw3v0cvi] {
    height: 300px;
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 4px;
}

[b-ouzw3v0cvi] .dxbl-treelist-header-row th {
    background-color: var(--header-bg, #f8f9fa);
    font-weight: 600;
}

[b-ouzw3v0cvi] .dxbl-treelist-data-row:hover {
    background-color: var(--hover-bg, #f8f9fa);
}
/* /Components/Features/Settings/Components/Roles/RoleTreeList.razor.rz.scp.css */
.role-tree-list[b-nxmzuzjzv8] {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 4px;
    padding: 0.5rem;
}

.role-list[b-nxmzuzjzv8] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.role-item[b-nxmzuzjzv8] {
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.role-item:hover[b-nxmzuzjzv8] {
    background-color: var(--hover-bg, #f8f9fa);
}

.role-name[b-nxmzuzjzv8] {
    margin-left: 0.5rem;
    font-weight: 500;
}
/* /Components/Features/Settings/Components/Users/UserEdit.razor.rz.scp.css */
/* 1. Ajuste al contenedor del Popup Body de DevExpress */
/* Usamos ::deep para penetrar el componente DxPopup si el CSS está aislado */
[b-xodxspou4w] .create-role-popup .modal-body,
[b-xodxspou4w] .create-role-popup .dxbl-popup-body {
    height: 100%;
    padding: 0 !important; /* Quitamos padding del popup para manejarlo nosotros */
    overflow: hidden; /* Ocultamos el desbordamiento por defecto para que funcione el Grid Scroll */
}

/* 2. El contenedor principal del formulario */
.edit-form[b-xodxspou4w] {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    /* SOLUCIÓN AL ZOOM: 
       Si el contenido es muy grande, permite scroll.
       Si cabe, se comporta como flexbox. */
    overflow-y: auto;
    overflow-x: hidden;
}

/* 3. Secciones Fijas (Header y Inputs) */
.user-info-header[b-xodxspou4w],
.form-section[b-xodxspou4w] {
    flex: 0 0 auto; /* No encoger ni crecer */
}

.user-info-header[b-xodxspou4w] {
    padding: 1rem;
    background-color: var(--header-bg, #f8f9fa);
    border-radius: 8px;
    border: 1px solid var(--border-color, #dee2e6);
}

.form-section[b-xodxspou4w] {
    padding: 1rem;
    background-color: var(--section-bg, #ffffff);
    border-radius: 8px;
    border: 1px solid var(--border-color, #dee2e6);
}

/* 4. El componente de Tabs (debe ocupar el espacio restante) */
[b-xodxspou4w] .dxbl-tabs {
    flex: 1; /* Ocupa el espacio sobrante */
    display: flex;
    flex-direction: column;
    min-height: 400px; /* IMPORTANTE: Altura mínima para que al hacer mucho zoom, el grid no desaparezca y aparezca el scroll del edit-form */
    margin-bottom: 0;
}

/* 5. Contenido del Tab */
[b-xodxspou4w] .dxbl-tabs-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden; /* El scroll lo maneja el Grid internamente */
    padding: 1rem 0 0 0; /* Padding solo arriba */
}

/* 6. Wrapper interno del tab */
.tab-content-wrapper[b-xodxspou4w] {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0; /* Permite al flexbox encogerse correctamente */
    overflow: hidden;
}

/* 7. Estilos auxiliares */
.form-label[b-xodxspou4w] {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--label-color, #495057);
}

[b-xodxspou4w] .popup-button {
    min-width: 100px;
}


/*
.edit-form {
    padding: 1rem;
}

.user-info-header {
    padding: 1rem;
    background-color: var(--header-bg, #f8f9fa);
    border-radius: 8px;
    border: 1px solid var(--border-color, #dee2e6);
}

.form-section {
    padding: 1rem;
    background-color: var(--section-bg, #ffffff);
    border-radius: 8px;
    border: 1px solid var(--border-color, #dee2e6);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--label-color, #495057);
}

.tab-content-wrapper {
    padding: 1rem 0;
    min-height: 320px;
}

::deep .popup-button {
    min-width: 100px;
}

::deep .dxbl-tabs {
    border-bottom: 1px solid var(--border-color, #dee2e6);
}

::deep .dxbl-tabs-tab {
    padding: 0.75rem 1.5rem;
}

    ::deep .dxbl-tabs-tab.dxbl-active {
        border-bottom: 2px solid var(--primary-color, #0d6efd);
        font-weight: 500;
    }










.create-role-popup .dx-popup-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.create-role-popup .p-3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.create-role-popup .dx-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.create-role-popup .dx-tabs-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.create-role-popup .treelist-wrapper {
    flex: 1;
    overflow: hidden;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 4px;
    background-color: #fff;
    max-height: calc(80vh - 300px);
}


.create-role-popup .permission-treelist {
    height: 100% !important;
    max-height: none !important;
}
*/
/* /Components/Features/Settings/Pages/BusinessCalendar.razor.rz.scp.css */
[b-g9gqp7dlmo] .non-operating-day {
    background-color: #f0f0f0;
    opacity: 0.7;
}

[b-g9gqp7dlmo] .dxbl-sc-month-view .non-operating-day {
    background-color: rgba(0, 0, 0, 0.05);
}

.scheduler-wrapper[b-g9gqp7dlmo] {
    width: 100%;
}


@media (min-width: 768px) and (max-width: 999px) {
    .scheduler-wrapper[b-g9gqp7dlmo] {
        width: 100vh !important;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    .scheduler-wrapper[b-g9gqp7dlmo] {
        width: 165vh !important;
    }
}

@media (min-width: 1200px) {
    .scheduler-wrapper[b-g9gqp7dlmo] {
        width: 170vh !important;
    }
}

@media (min-width: 1600px) {
    .scheduler-wrapper[b-g9gqp7dlmo] {
        width: 100% !important;
    }
}
/* /Components/Features/Settings/Pages/Catalogs.razor.rz.scp.css */
[b-47fcpvbno2] .main-catalogs-tabs.dxbl-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

[b-47fcpvbno2] .main-catalogs-tabs.dxbl-tabs > .dxbl-tabs-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

[b-47fcpvbno2] .main-catalogs-tabs.dxbl-tabs > .dxbl-tabs-content > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
/* /Components/Features/Settings/Pages/Roles.razor.rz.scp.css */
.page-layout[b-1zco880ffm] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);    
    overflow: hidden;
}

.page-header[b-1zco880ffm] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.header-actions[b-1zco880ffm] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-hover:hover[b-1zco880ffm] {
    background-color: #e7f1ff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.grid-container[b-1zco880ffm] {
    flex: 1;
    min-height: 0;    
    width: 0;
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

[b-1zco880ffm] .permission-treelist {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
/* /Components/Features/Settings/Pages/Sequences.razor.rz.scp.css */
[b-2pc75yyo65] .monitoring-grid {
    height: 100%;
    width: calc(100vw - 300px);
    transition: width .6s cubic-bezier(.694, .0482, .335, 1);
}

/* Cuando el sidebar está colapsado */
:global(.main[data-sidebar="collapsed"]) .monitoring-grid[b-2pc75yyo65],
:global(.main[data-sidebar="hidden"]) .monitoring-grid[b-2pc75yyo65] {
    width: calc(100vw - 110px) !important;
}

/* Fallback por si :global no es necesario o funciona diferente */
.main[data-sidebar="collapsed"] .monitoring-grid[b-2pc75yyo65],
.main[data-sidebar="hidden"] .monitoring-grid[b-2pc75yyo65] {
    width: calc(100vw - 110px) !important;
}

[b-2pc75yyo65] .dxbl-grid-header-row {
    background-color: #f8f9fa !important;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #6c757d;
}

[b-2pc75yyo65] .dxbl-grid-row td {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    vertical-align: middle;
    font-size: 0.85rem;
}

.id-badge[b-2pc75yyo65] {
    font-family: var(--bs-font-monospace);
    font-size: 0.75rem;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    display: inline-block;
}
/* /Components/Features/Settings/Pages/Settings.razor.rz.scp.css */
/* Main Container */
.settings-container[b-qnfswmtgj0] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 2rem;
    animation: fadeIn-b-qnfswmtgj0 0.8s ease-out;
    background: #ffffff;
    position: relative;
}

/* Background Decoration (Integrated) */
.settings-container[b-qnfswmtgj0]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

/* Hero Section (Borderless, Integrated) */
.settings-hero[b-qnfswmtgj0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

/* Visual Composition: Abstract Controls */
.hero-visual[b-qnfswmtgj0] {
    margin-bottom: 2.5rem;
    position: relative;
    width: 120px;
    height: 80px;
}

.abstract-controls[b-qnfswmtgj0] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    opacity: 0.8;
}

.control-line[b-qnfswmtgj0] {
    background: #e2e8f0;
    height: 6px;
    border-radius: 6px;
    position: relative;
    width: 100%;
    overflow: visible;
}

.control-line[b-qnfswmtgj0]::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: slideControl-b-qnfswmtgj0 5s ease-in-out infinite alternate;
}

.line-1[b-qnfswmtgj0]::after {
    left: 20%;
    animation-delay: 0s;
    border-color: #6366f1;
}

.line-2[b-qnfswmtgj0]::after {
    left: 70%;
    animation-delay: 1.5s;
    border-color: #ec4899;
}

.line-3[b-qnfswmtgj0]::after {
    left: 40%;
    animation-delay: 0.8s;
    border-color: #10b981;
}

@keyframes slideControl-b-qnfswmtgj0 {
    0% {
        left: 10%;
    }

    100% {
        left: 85%;
    }
}

/* Content Typography */
.hero-content h1[b-qnfswmtgj0] {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p[b-qnfswmtgj0] {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Capabilities Row (Clean, text-based) */
.capabilities-row[b-qnfswmtgj0] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.capability-item[b-qnfswmtgj0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.capability-item:hover[b-qnfswmtgj0] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

.capability-item i[b-qnfswmtgj0] {
    color: #6366f1;
    /* Primary brand color hint */
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeIn-b-qnfswmtgj0 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .hero-content h1[b-qnfswmtgj0] {
        font-size: 2.25rem;
    }

    .capabilities-row[b-qnfswmtgj0] {
        gap: 1rem;
    }

    .capability-item[b-qnfswmtgj0] {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
/* /Components/Features/Settings/Pages/Users.razor.rz.scp.css */
/* Header actions */
.header-actions[b-8pxh8gf8y5] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

[b-8pxh8gf8y5] .search-input {
    width: 300px;
}

/* Grid de usuarios */
[b-8pxh8gf8y5] .users-grid {
    height: 100%;
    border-radius: 8px;
}
/* /Components/Layout/AuthLayout.razor.rz.scp.css */

/* Fix para reset.css que hace inputs transparentes */
[b-0bqx9jtzze] .dxbl-textbox-input-container {
    background-color: white !important;
}

[b-0bqx9jtzze] .dxbl-textbox-input-container:hover {
    background-color: #f8f9fa !important;
}

[b-0bqx9jtzze] .dxbl-textbox-input-container:focus-within {
    background-color: white !important;
}

/* Fix específico para el input real dentro del DxTextBox (incluye password) */
[b-0bqx9jtzze] .dxbl-textbox-input {
    background-color: transparent !important;
    background-image: none !important;
}

[b-0bqx9jtzze] .dxbl-textbox-input:hover {
    background-color: transparent !important;
}

[b-0bqx9jtzze] .dxbl-textbox-input:focus {
    background-color: transparent !important;
}

/* Fix crítico: sobrescribir autofill de navegador que causa fondo azul */
[b-0bqx9jtzze] input:-webkit-autofill,
[b-0bqx9jtzze] input:-webkit-autofill:hover,
[b-0bqx9jtzze] input:-webkit-autofill:focus,
[b-0bqx9jtzze] input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    border: none !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* También para inputs dentro de DxTextBox específicamente */
[b-0bqx9jtzze] .dxbl-textbox input:-webkit-autofill,
[b-0bqx9jtzze] .dxbl-textbox input:-webkit-autofill:hover,
[b-0bqx9jtzze] .dxbl-textbox input:-webkit-autofill:focus,
[b-0bqx9jtzze] .dxbl-textbox input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    border: none !important;
    caret-color: #000 !important;
}

/* AuthLayout.razor.css */

.auth-layout[b-0bqx9jtzze] {
    display: grid;    
    grid-template-columns: 1fr minmax(450px, 35vw);
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* --- IZQUIERDA: BRANDING --- */
.auth-branding[b-0bqx9jtzze] {
    position: relative;
    background-image: url('/img/background.png');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
}

.branding-overlay[b-0bqx9jtzze] {
    position: absolute;
    inset: 0;
    /* Gradiente moderno y dramótico */
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.branding-content[b-0bqx9jtzze] {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo-main[b-0bqx9jtzze] {
    height: 32px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.brand-hero[b-0bqx9jtzze] {
    margin-bottom: 2rem;
}

.logo-product[b-0bqx9jtzze] {
    height: 60px;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title[b-0bqx9jtzze] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-family-primary, sans-serif);
}

.hero-text[b-0bqx9jtzze] {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
    line-height: 1.6;
}

.brand-footer[b-0bqx9jtzze] {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* --- DERECHA: FORM CONTAINER --- */
.auth-form-container[b-0bqx9jtzze] {
    background-color: rgb(var(--back-300, 248, 249, 250)); /* Fallback a gris muy claro */
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Wrapper interno para centrar verticalmente */
.form-content-wrapper[b-0bqx9jtzze] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* CENTRADO VERTICAL */
    align-items: center;
    padding: 2rem;
    width: 100%;
    height: 100vh; /* Asegura altura completa */
    overflow-y: auto;
}

.auth-card[b-0bqx9jtzze] {
    width: 100%;
    max-width: 420px; /* Ancho máximo del formulario */
}

.mobile-header[b-0bqx9jtzze] {
    display: none;
    margin-bottom: 2rem;
    text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .auth-layout[b-0bqx9jtzze] {
        grid-template-columns: 1fr; /* Una sola columna */
    }

    .auth-branding[b-0bqx9jtzze] {
        display: none; /* Ocultamos branding en tablets/móviles para enfocar en login */
    }

    .mobile-header[b-0bqx9jtzze] {
        display: block;
    }

    .form-content-wrapper[b-0bqx9jtzze] {
        justify-content: flex-start; /* En móvil, mejor arriba que centrado */
        padding-top: 4rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.main[b-196vsrcciu] {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: 64px 1fr;
    grid-template-areas:
        "header header"
        "sidebar content";
    transition: all .6s cubic-bezier(.694, .0482, .335, 1);
    height: 100vh;
    width: 100vw;
}

    .main .header[b-196vsrcciu] {
        grid-area: header;
        height: 64px;
        width: 100vw;
    }

    .main .aside[b-196vsrcciu] {
        box-sizing: border-box;
        grid-area: sidebar;
        height: 100%;
        width: 100%
    }

    .main .content[b-196vsrcciu] {
        grid-area: content;
        height: 100%;
        width: 100%;
    }

    /* Sidebar collapsed state */
    .main[data-sidebar="collapsed"][b-196vsrcciu] {
        grid-template-columns: 68px 1fr;
    }

    /* Sidebar hidden state (for Home page) */
    .main[data-sidebar="hidden"][b-196vsrcciu] {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "content";
    }
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home Page Styles */

.home-wrapper[b-yjow4hfary] {
    grid-column: 1 / -1; /* Occupy full width including sidebar area */
    background-color: rgb(var(--back-50));
    min-height: 100vh;
}

/* Main Content */
.home-content[b-yjow4hfary] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 3rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Welcome Section */
.welcome-section[b-yjow4hfary] {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
}

.welcome-title[b-yjow4hfary] {
    font-family: var(--font-family-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(var(--text-50));
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payments-logo-inline[b-yjow4hfary] {
    height: 2.75rem;
    width: auto;
    vertical-align: middle;
}

.welcome-description[b-yjow4hfary] {
    font-family: var(--font-family-primary);
    font-size: 1.0625rem;
    font-weight: 400;
    color: rgb(var(--text-300));
    line-height: 1.7;
    margin: 0;
}

/* Modules Grid */
.modules-grid[b-yjow4hfary] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 1000px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .modules-grid[b-yjow4hfary] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        max-width: 600px;
    }

    .home-content[b-yjow4hfary] {
        padding: 2rem 2rem;
        padding-top: calc(64px + 1rem);
    }
}

@media (max-width: 768px) {
    .home-content[b-yjow4hfary] {
        padding: 2rem 1.5rem;
        padding-top: calc(56px + 1rem);
    }

    .welcome-section[b-yjow4hfary] {
        margin-bottom: 2.5rem;
    }

    .welcome-title[b-yjow4hfary] {
        font-size: 1.875rem;
    }

    .payments-logo-inline[b-yjow4hfary] {
        height: 2.25rem;
    }

    .welcome-description[b-yjow4hfary] {
        font-size: 0.9375rem;
    }

    .modules-grid[b-yjow4hfary] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .home-content[b-yjow4hfary] {
        padding: 1.5rem 1rem;
        padding-top: calc(52px + 0.75rem);
    }

    .welcome-section[b-yjow4hfary] {
        margin-bottom: 2rem;
    }

    .welcome-title[b-yjow4hfary] {
        font-size: 1.5rem;
    }

    .payments-logo-inline[b-yjow4hfary] {
        height: 1.875rem;
    }

    .welcome-description[b-yjow4hfary] {
        font-size: 0.875rem;
    }

    .modules-grid[b-yjow4hfary] {
        gap: 0.625rem;
    }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.notfound-container[b-952xyqx2kb] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(var(--back-50)) 0%, rgb(var(--back-100)) 100%);
    padding: 1.5rem;
}

.notfound-content[b-952xyqx2kb] {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.notfound-header[b-952xyqx2kb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.notfound-gft-logo[b-952xyqx2kb] {
    height: 20px;
    width: auto;
}

.notfound-payments-logo[b-952xyqx2kb] {
    height: 24px;
    width: auto;
}

.notfound-code[b-952xyqx2kb] {
    font-family: var(--font-family-primary);
    font-size: 5rem;
    font-weight: 800;
    color: rgb(var(--neutral-200));
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.05em;
}

.notfound-title[b-952xyqx2kb] {
    font-family: var(--font-family-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(var(--text-50));
    margin: 0 0 0.5rem 0;
}

.notfound-description[b-952xyqx2kb] {
    font-family: var(--font-family-primary);
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgb(var(--text-300));
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.notfound-actions[b-952xyqx2kb] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.notfound-btn[b-952xyqx2kb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.notfound-btn-primary[b-952xyqx2kb] {
    background-color: rgb(var(--text-50));
    color: white;
}

.notfound-btn-primary:hover[b-952xyqx2kb] {
    background-color: rgb(var(--text-100));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notfound-btn-secondary[b-952xyqx2kb] {
    background-color: white;
    color: rgb(var(--text-100));
    border: 1px solid rgb(var(--neutral-300));
}

.notfound-btn-secondary:hover[b-952xyqx2kb] {
    background-color: rgb(var(--back-50));
    border-color: rgb(var(--neutral-400));
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .notfound-code[b-952xyqx2kb] {
        font-size: 4rem;
    }

    .notfound-title[b-952xyqx2kb] {
        font-size: 1.25rem;
    }

    .notfound-actions[b-952xyqx2kb] {
        flex-direction: column;
    }

    .notfound-btn[b-952xyqx2kb] {
        width: 100%;
    }
}
/* /Components/Shared/CategoryCard.razor.rz.scp.css */
.module-card[b-ifrweacgyk] {
    background-color: white;
    border-radius: 8px;
    padding: 1rem 0.875rem;
    box-shadow: var(--shadow-low);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.module-card:hover[b-ifrweacgyk] {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.module-header[b-ifrweacgyk] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    width: 100%;
}

.module-icon[b-ifrweacgyk] {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.375rem;
    color: white;
    background-color: #6c757d; /* Default fallback color */
}

.module-tags[b-ifrweacgyk] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.module-tag[b-ifrweacgyk] {
    font-family: var(--font-family-primary);
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgb(var(--text-300));
    line-height: 1.2;
}

.module-title[b-ifrweacgyk] {
    font-family: var(--font-family-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgb(var(--text-50));
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.module-description[b-ifrweacgyk] {
    font-family: var(--font-family-primary);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgb(var(--text-400));
    line-height: 1.45;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .module-card[b-ifrweacgyk] {
        padding: 0.875rem 0.75rem;
    }

    .module-header[b-ifrweacgyk] {
        gap: 0.625rem;
        margin-bottom: 0.75rem;
    }

    .module-icon[b-ifrweacgyk] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .module-tags[b-ifrweacgyk] {
        gap: 0.3125rem;
    }

    .module-tag[b-ifrweacgyk] {
        font-size: 0.625rem;
    }

    .module-title[b-ifrweacgyk] {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }

    .module-description[b-ifrweacgyk] {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .module-card[b-ifrweacgyk] {
        padding: 0.75rem 0.625rem;
    }

    .module-header[b-ifrweacgyk] {
        gap: 0.5rem;
        margin-bottom: 0.625rem;
    }

    .module-icon[b-ifrweacgyk] {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .module-tags[b-ifrweacgyk] {
        gap: 0.25rem;
    }

    .module-tag[b-ifrweacgyk] {
        font-size: 0.5625rem;
    }

    .module-title[b-ifrweacgyk] {
        font-size: 0.8125rem;
        margin-bottom: 0.25rem;
    }

    .module-description[b-ifrweacgyk] {
        font-size: 0.6875rem;
        line-height: 1.35;
    }
}
/* /Components/Shared/ErrorBoundary/ComponentError.razor.rz.scp.css */
.component-error[b-kik5ltlfwb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 1rem;
    background-color: var(--color-error-bg, #fef2f2);
    border: 1px solid var(--color-error-border, #fecaca);
    border-radius: 0.5rem;
    text-align: center;
}

.component-error-icon[b-kik5ltlfwb] {
    color: var(--color-error, #dc2626);
    margin-bottom: 1rem;
}

.component-error-content[b-kik5ltlfwb] {
    max-width: 500px;
}

.component-error-title[b-kik5ltlfwb] {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-error-title, #991b1b);
}

.component-error-message[b-kik5ltlfwb] {
    margin: 0 0 0.75rem;
    color: var(--color-error-text, #7f1d1d);
    font-size: 0.9375rem;
}

.component-error-correlation[b-kik5ltlfwb] {
    margin: 0 0 1rem;
    color: var(--color-text-muted, #6b7280);
}

.component-error-correlation code[b-kik5ltlfwb] {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
    font-size: 0.8125rem;
    background-color: var(--color-code-bg, #f3f4f6);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.component-error-details[b-kik5ltlfwb] {
    margin-top: 1rem;
    text-align: left;
    width: 100%;
}

.component-error-details summary[b-kik5ltlfwb] {
    cursor: pointer;
    color: var(--color-text-muted, #6b7280);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.component-error-details pre[b-kik5ltlfwb] {
    background-color: var(--color-code-bg, #1f2937);
    color: var(--color-code-text, #f9fafb);
    padding: 1rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    overflow-x: auto;
    margin: 0.5rem 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.component-error-stack[b-kik5ltlfwb] {
    max-height: 200px;
    overflow-y: auto;
}

.component-error-actions[b-kik5ltlfwb] {
    margin-top: 1rem;
}

.btn-recover[b-kik5ltlfwb] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
    background-color: var(--color-primary, #2563eb);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.btn-recover:hover[b-kik5ltlfwb] {
    background-color: var(--color-primary-hover, #1d4ed8);
}

.btn-recover:focus[b-kik5ltlfwb] {
    outline: 2px solid var(--color-primary, #2563eb);
    outline-offset: 2px;
}

.btn-recover svg[b-kik5ltlfwb] {
    flex-shrink: 0;
}
/* /Components/Shared/ErrorBoundary/CustomErrorBoundary.razor.rz.scp.css */
/* Styles handled by ComponentError.razor.css */
/* /Components/Shared/Main/MainHeader.razor.rz.scp.css */
.header[b-mk9qh5r5c9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    width: 100%;
}

    .header .brand[b-mk9qh5r5c9] {
        padding: 12px;
        height: 64px;
        width: 250px;
    }

        .header .brand img[b-mk9qh5r5c9] {
            height: 100%;
            width: auto;
        }

    .header .content[b-mk9qh5r5c9] {
        height: 64px;
        width: 100%;
    }

    .header .profile[b-mk9qh5r5c9] {
        display: flex;
        align-items: center;
        height: 64px;
        width: auto;
    }

@media (max-width: 768px) {
    .header .content[b-mk9qh5r5c9] {
        display: none;
    }
}

@media (max-width: 480px) {
    .header .content[b-mk9qh5r5c9] {
        display: none;
    }
}
/* /Components/Shared/Main/MainSidebar.razor.rz.scp.css */
.sidebar[b-oxggfia1qc] {
    align-items: stretch;
    background-color: rgb(var(--neutral-700));
    border-radius: 9px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.25), 0 2px 2px rgba(0,0,0,0.20), 0 4px 4px rgba(0,0,0,0.15), 0 8px 8px rgba(0,0,0,0.10), 0 16px 16px rgba(0,0,0,0.05);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0px 6px 6px 6px;
    min-height: 0;
    overflow: hidden; /* Normal cuando está grande */
    height: calc(100vh - 71px);
    width: auto;
    transition: all .6s cubic-bezier(.694, .0482, .335, 1);
    position: relative;
    z-index: 1050;
}

    .sidebar .header[b-oxggfia1qc] {
        align-items: flex-end;
        box-sizing: border-box;
        color: rgba(var(--foreground-color-secondary), .9);
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        height: 48px;
        margin: 0;
        overflow: hidden;
        padding: 0;
        width: 100%;
    }

    .sidebar .toggle[b-oxggfia1qc] {
        background-color: transparent;
        height: 48px;
        margin: 0;
        padding: 0px 11px;
        transition: transform .6s cubic-bezier(.694, .0482, .335, 1);
        z-index: 2;
    }

        .sidebar .toggle i[b-oxggfia1qc] {
            color: rgba(var(--neutral-50), .9);
            font-size: 32px;
        }

        .sidebar .toggle.open[b-oxggfia1qc] {
            transform: rotate(180deg);
        }

        .sidebar .toggle.closed[b-oxggfia1qc] {
            transform: rotate(0deg);
        }

    .sidebar.large[b-oxggfia1qc] {
        min-width: 238px;
        width: 260px;
    }

    .sidebar.small[b-oxggfia1qc] {
        min-width: 56px;
        width: 56px;
    }

    .sidebar .content[b-oxggfia1qc] {
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto; /* Scroll normal cuando está grande */
        margin: 0px;
        height: calc(100vh - 132px);
    }

        .sidebar .content[b-oxggfia1qc]::-webkit-scrollbar {
            display: none;
        }

    /* ============================================
   FLYOUT OVERFLOW — delayed until after collapse transition
   so content stays clipped during the .6s width animation.
   ============================================ */
    .sidebar.small[b-oxggfia1qc] {
        animation: enable-flyout-overflow-b-oxggfia1qc 0s .65s forwards;
    }

    .sidebar.small .content[b-oxggfia1qc] {
        animation: enable-flyout-overflow-b-oxggfia1qc 0s .65s forwards;
    }

@keyframes enable-flyout-overflow-b-oxggfia1qc {
    to {
        overflow: visible;
    }
}

/* Navbar */
.navbar[b-oxggfia1qc] {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0px 6px 12px 6px;
    row-gap: 2px;
    width: 100%;
}

/* ============================================
   Scroll Chevrons - CSS Scroll-Driven
   ============================================ */
@keyframes detect-scroll-b-oxggfia1qc {
    from, to {
        --can-scroll:;
    }
}

.sidebar .content[b-oxggfia1qc] {
    scroll-timeline: --sidebar-scroll y;
    animation: detect-scroll-b-oxggfia1qc linear;
    animation-timeline: --sidebar-scroll;
    animation-fill-mode: none;
}

.scroll-chevron[b-oxggfia1qc] {
    position: sticky;
    left: 0;
    right: 0;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    z-index: 5;
    --visibility-if-can-scroll: var(--can-scroll) visible;
    --visibility-if-cant-scroll: hidden;
    visibility: var(--visibility-if-can-scroll, var(--visibility-if-cant-scroll));
    animation-fill-mode: both;
    animation-timeline: --sidebar-scroll;
}

    .scroll-chevron i[b-oxggfia1qc] {
        color: rgba(var(--neutral-50), 0.6);
        font-size: 16px;
    }

.scroll-chevron-top[b-oxggfia1qc] {
    top: 0;
    background: linear-gradient(to bottom, rgb(var(--neutral-700)) 50%, transparent);
    animation-name: reveal-top-b-oxggfia1qc;
    animation-range: 1em 2em;
}

.scroll-chevron-bottom[b-oxggfia1qc] {
    bottom: 0;
    background: linear-gradient(to top, rgb(var(--neutral-700)) 50%, transparent);
    animation-name: reveal-bottom-b-oxggfia1qc;
    animation-direction: reverse;
    animation-range: calc(100% - 2em) calc(100% - 1em);
}

@keyframes reveal-top-b-oxggfia1qc {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes reveal-bottom-b-oxggfia1qc {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scroll-chevron-top i[b-oxggfia1qc], .scroll-chevron-bottom i[b-oxggfia1qc] {
    animation: bounce-b-oxggfia1qc 1.5s ease-in-out infinite;
}

@keyframes bounce-b-oxggfia1qc {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

@supports not (animation-timeline: scroll()) {
    .scroll-chevron[b-oxggfia1qc] {
        display: none;
    }
}


.nav-item > a[b-oxggfia1qc],
.nav-item > .nav-link[b-oxggfia1qc],
.nav-item[b-oxggfia1qc]  > a,
.nav-item[b-oxggfia1qc]  .nav-link {
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: row;
    margin: 2px 0 !important;
    padding: 8px 10px !important;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

    .nav-item[b-oxggfia1qc]  > a:hover {
        background-color: rgba(8, 145, 178, 0.3);
        color: rgba(255, 255, 255, 1);
    }

.nav-item i.nav-icon[b-oxggfia1qc],
.nav-item[b-oxggfia1qc]  i.nav-icon {
    font-size: 20px;
    width: 24px;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
    padding-left: 8px;
}

.nav-item .nav-text[b-oxggfia1qc],
.nav-item[b-oxggfia1qc]  .nav-text {
    font-size: 15px;
    margin-left: 14px;
    white-space: nowrap;
    opacity: 1;
    max-width: 200px;
    overflow: hidden;
    /* Expanding: max-width/margin instant, opacity fades in after sidebar expands */
    transition: opacity .3s ease .4s, margin-left 0s linear, max-width 0s linear;
}

/* Ocultar texto al colapsar */
.nav-item.collapsed .nav-text[b-oxggfia1qc] {
    opacity: 0;
    max-width: 0;
    margin-left: 0;
    /* Collapsing: opacity fades fast, max-width/margin collapse after sidebar shrinks */
    transition: opacity .15s ease, max-width 0s linear .6s, margin-left 0s linear .6s;
}
/* /Components/Shared/Main/MainSidebarItem.razor.rz.scp.css */
/* --- CATEGORY LABELS --- */
.category-label[b-h2iy2r0a2b] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    list-style: none;
    margin: 0;
    padding: 16px 10px 6px 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

    .category-label i[b-h2iy2r0a2b] {
        font-size: 18px;
        width: 24px;
        min-width: 24px;
        text-align: center;
        flex-shrink: 0;
        text-transform: none;
        opacity: 0;
        max-width: 0;
        overflow: hidden;
        transition: opacity .3s ease .3s, max-width 0s linear;
    }

    .category-label .label-text[b-h2iy2r0a2b] {
        white-space: nowrap;
        opacity: 1;
        max-width: 200px;
        overflow: hidden;
        transition: opacity .3s ease .4s, max-width 0s linear;
    }

    .category-label.collapsed i[b-h2iy2r0a2b] {
        opacity: 1;
        max-width: 24px;
        transition: opacity .3s ease .6s, max-width 0s linear .6s;
    }

    .category-label.collapsed .label-text[b-h2iy2r0a2b] {
        opacity: 0;
        max-width: 0;
        transition: opacity .15s ease, max-width 0s linear .6s;
    }

/* --- NAV ITEM (CONTENEDOR) --- */
.nav-item[b-h2iy2r0a2b] {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative; /* CRUCIAL: Para anclar el flyout a su lado */
}

    .nav-item[b-h2iy2r0a2b]  > a,
    .nav-item[b-h2iy2r0a2b]  .nav-link {
        align-items: center;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        flex-direction: row;
        margin: 2px 0;
        padding: 8px 10px;
        text-decoration: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        white-space: nowrap;
    }

        .nav-item[b-h2iy2r0a2b]  > a:hover {
            background-color: rgba(8, 145, 178, 0.3);
            color: rgba(255, 255, 255, 1);
        }

    .nav-item.active[b-h2iy2r0a2b]  > a {
        background-color: rgb(8, 145, 178);
        color: rgba(255, 255, 255, 1);
    }

    .nav-item i.nav-icon[b-h2iy2r0a2b] {
        font-size: 20px;
        width: 24px;
        min-width: 24px;
        text-align: center;
        flex-shrink: 0;
        padding-left: 8px;
    }

    .nav-item .nav-text[b-h2iy2r0a2b] {
        font-size: 15px;
        margin-left: 14px;
        white-space: nowrap;
        opacity: 1;
        max-width: 200px;
        overflow: hidden;
        /* Expanding: max-width/margin instant, opacity fades in after sidebar expands */
        transition: opacity .3s ease .4s, margin-left 0s linear, max-width 0s linear;
    }

    .nav-item .toggle-icon[b-h2iy2r0a2b] {
        opacity: 1;
        max-width: 30px;
        overflow: hidden;
        transition: opacity .3s ease .4s, max-width 0s linear;
    }

    /* Ocultar texto y flechas al colapsar */
    .nav-item.collapsed .nav-text[b-h2iy2r0a2b] {
        opacity: 0;
        max-width: 0;
        margin-left: 0;
        /* Collapsing: opacity fades fast, max-width/margin collapse after sidebar shrinks */
        transition: opacity .15s ease, max-width 0s linear .6s, margin-left 0s linear .6s;
    }

    .nav-item.collapsed .toggle-icon[b-h2iy2r0a2b] {
        opacity: 0;
        max-width: 0;
        transition: opacity .15s ease, max-width 0s linear .6s;
    }

/* ============================================
   ESTILOS DE MENÚ NORMAL
   ============================================ */
.standard-menu[b-h2iy2r0a2b] {
    padding-left: 1rem;
    list-style: none;
    display: block;
}

/* ============================================
   FLYOUT MENU (Menú flotante al colapsar)
   ============================================ */

/* 1. Ocultar el menú por defecto en estado colapsado */
.nav-item.collapsed .flyout-menu[b-h2iy2r0a2b] {
    display: none;
    position: absolute;
    left: 50px; /* Ancho del sidebar pequeño aprox, para que nazca pegado */
    top: 0;
    width: 250px;
    background-color: rgb(var(--neutral-700));
    border-radius: 0 8px 8px 0;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.6);
    padding: 10px;
    margin: 0;
    list-style: none;
    z-index: 9999; /* Máxima prioridad para que pase por encima de la pantalla */
}

/* 2. Mostrar el menú flotante al hacer hover SOBRE EL PADRE */
.nav-item.has-treeview.collapsed:hover > .flyout-menu[b-h2iy2r0a2b] {
    display: block;
}

/* 3. Estilos de los items HIJOS dentro del flyout */
[b-h2iy2r0a2b] .flyout-menu .nav-item {
    width: 100%;
}

/* Override: parent's .nav-item.collapsed .nav-text cascades into flyout children,
   hiding their text. Force it visible here. */
.nav-item.collapsed .flyout-menu .nav-text[b-h2iy2r0a2b] {
    opacity: 1 !important;
    max-width: 200px !important;
    margin-left: 10px !important;
}

/* Override: parent's .nav-item.collapsed ::deep .nav-link centers all descendant links.
   Flyout children must be left-aligned. */
.nav-item.collapsed .flyout-menu[b-h2iy2r0a2b]  .nav-link {
    justify-content: flex-start !important;
    padding: 8px 15px !important;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .nav-item[b-h2iy2r0a2b]  > a {
        padding: 6px 8px;
    }

    .nav-item i[b-h2iy2r0a2b] {
        font-size: 18px;
    }

    .nav-item .nav-text[b-h2iy2r0a2b] {
        font-size: 14px;
        margin-left: 12px;
    }

    .category-label[b-h2iy2r0a2b] {
        font-size: 10px;
        padding: 14px 8px 5px 8px;
    }
}

@media (max-width: 480px) {
    .nav-item[b-h2iy2r0a2b]  > a {
        padding: 5px 6px;
    }

    .nav-item i[b-h2iy2r0a2b] {
        font-size: 16px;
    }

    .nav-item .nav-text[b-h2iy2r0a2b] {
        font-size: 13px;
        margin-left: 10px;
    }

    .category-label[b-h2iy2r0a2b] {
        font-size: 9px;
        padding: 12px 6px 4px 6px;
    }
}
/* /Components/Shared/Modals/ReconnectModal.razor.rz.scp.css */
/* Hide all state-specific elements by default */
.components-reconnect-first-attempt-visible[b-6trxicbya5],
.components-reconnect-repeated-attempt-visible[b-6trxicbya5],
.components-reconnect-failed-visible[b-6trxicbya5],
.components-pause-visible[b-6trxicbya5],
.components-resume-failed-visible[b-6trxicbya5],
.components-rejoining-animation[b-6trxicbya5] {
    display: none;
}

/* Show elements based on state */
#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-6trxicbya5],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-6trxicbya5],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-6trxicbya5],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-6trxicbya5],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-6trxicbya5],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-6trxicbya5],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-6trxicbya5] {
    display: block;
}

/* Modal base styles */
#components-reconnect-modal[b-6trxicbya5] {
    background-color: white;
    width: 30rem;
    max-width: 90vw;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-6trxicbya5 0.5s both;
}

#components-reconnect-modal[open][b-6trxicbya5] {
    animation: components-reconnect-modal-slideUp-b-6trxicbya5 0.5s cubic-bezier(.05, .89, .25, 1.02),
               components-reconnect-modal-fadeInOpacity-b-6trxicbya5 0.3s ease-in-out;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-6trxicbya5]::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    animation: components-reconnect-modal-fadeInOpacity-b-6trxicbya5 0.3s ease-in-out;
    opacity: 1;
    backdrop-filter: blur(2px);
}

/* Container layout */
.components-reconnect-container[b-6trxicbya5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

/* Icon styles */
.components-reconnect-icon[b-6trxicbya5] {
    color: rgb(var(--warning-500, 245, 158, 11));
    margin-bottom: 0.5rem;
}

.components-reconnect-icon-wifi[b-6trxicbya5] {
    animation: components-reconnect-pulse-b-6trxicbya5 2s ease-in-out infinite;
}

/* Title and message styles */
.components-reconnect-title[b-6trxicbya5] {
    font-family: var(--font-family-primary, system-ui, -apple-system, sans-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(var(--text-50, 31, 41, 55));
    margin: 0;
}

.components-reconnect-message[b-6trxicbya5] {
    font-family: var(--font-family-primary, system-ui, -apple-system, sans-serif);
    font-size: 0.9375rem;
    color: rgb(var(--text-300, 107, 114, 128));
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

/* Button styles */
.components-reconnect-btn[b-6trxicbya5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-family-primary, system-ui, -apple-system, sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    margin-top: 0.5rem;
}

.components-reconnect-btn-primary[b-6trxicbya5] {
    background-color: rgb(var(--text-50, 31, 41, 55));
    color: white;
}

.components-reconnect-btn-primary:hover[b-6trxicbya5] {
    background-color: rgb(var(--text-100, 55, 65, 81));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.components-reconnect-btn-secondary[b-6trxicbya5] {
    background-color: white;
    color: rgb(var(--text-100, 55, 65, 81));
    border: 1px solid rgb(var(--neutral-300, 209, 213, 219));
}

.components-reconnect-btn-secondary:hover[b-6trxicbya5] {
    background-color: rgb(var(--back-50, 249, 250, 251));
    border-color: rgb(var(--neutral-400, 156, 163, 175));
    transform: translateY(-1px);
}

/* Animation for rejoining */
.components-rejoining-animation[b-6trxicbya5] {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0.5rem 0;
}

.components-rejoining-animation div[b-6trxicbya5] {
    position: absolute;
    border: 3px solid rgb(var(--primary-500, 59, 130, 246));
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-6trxicbya5 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-6trxicbya5] {
    animation-delay: -0.5s;
}

/* Keyframes */
@keyframes components-reconnect-modal-slideUp-b-6trxicbya5 {
    0% {
        transform: translateY(20px) scale(0.98);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-6trxicbya5 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-6trxicbya5 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes components-rejoining-animation-b-6trxicbya5 {
    0% {
        top: 30px;
        left: 30px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 30px;
        left: 30px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

@keyframes components-reconnect-pulse-b-6trxicbya5 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    #components-reconnect-modal[b-6trxicbya5] {
        width: 90vw;
        padding: 1.5rem;
        margin: 15vh auto;
    }

    .components-reconnect-title[b-6trxicbya5] {
        font-size: 1rem;
    }

    .components-reconnect-message[b-6trxicbya5] {
        font-size: 0.875rem;
    }
}
/* /Components/Shared/Modals/SessionExpiredModal.razor.rz.scp.css */
/* Session Expired Modal Overlay */
.session-modal-overlay[b-lqu4c7khoq] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: sessionModalFadeIn-b-lqu4c7khoq 0.2s ease-out;
}

@keyframes sessionModalFadeIn-b-lqu4c7khoq {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content */
.session-modal-content[b-lqu4c7khoq] {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    margin: 1rem;
    padding: 2rem;
    text-align: center;
    animation: sessionModalSlideIn-b-lqu4c7khoq 0.25s ease-out;
}

@keyframes sessionModalSlideIn-b-lqu4c7khoq {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal Icon */
.session-modal-icon[b-lqu4c7khoq] {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background-color: rgb(var(--warning-50));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--warning-600));
}

/* Modal Title */
.session-modal-title[b-lqu4c7khoq] {
    font-family: var(--font-family-primary);
    font-size: 1.375rem;
    font-weight: 600;
    color: rgb(var(--text-50));
    margin: 0 0 0.75rem 0;
}

/* Modal Message */
.session-modal-message[b-lqu4c7khoq] {
    font-family: var(--font-family-primary);
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgb(var(--text-300));
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* Error Message */
.session-modal-error[b-lqu4c7khoq] {
    background-color: rgb(var(--danger-50));
    border: 1px solid rgb(var(--danger-200));
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    color: rgb(var(--danger-700));
}

/* Form Styles */
.session-modal-form[b-lqu4c7khoq] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.session-form-field[b-lqu4c7khoq] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.session-form-label[b-lqu4c7khoq] {
    font-family: var(--font-family-primary);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgb(var(--text-200));
}

.session-form-input[b-lqu4c7khoq] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgb(var(--neutral-300));
    border-radius: 8px;
    font-family: var(--font-family-primary);
    font-size: 0.9375rem;
    color: rgb(var(--text-100));
    background-color: white;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.session-form-input:focus[b-lqu4c7khoq] {
    outline: none;
    border-color: rgb(var(--primary-500));
    box-shadow: 0 0 0 3px rgba(var(--primary-500), 0.15);
}

.session-form-input:disabled[b-lqu4c7khoq] {
    background-color: rgb(var(--back-100));
    color: rgb(var(--text-400));
    cursor: not-allowed;
}

.session-form-input[b-lqu4c7khoq]::placeholder {
    color: rgb(var(--text-400));
}

/* Modal Actions */
.session-modal-actions[b-lqu4c7khoq] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Button Base */
.session-btn[b-lqu4c7khoq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-family-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.session-btn:disabled[b-lqu4c7khoq] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Primary Button */
.session-btn-primary[b-lqu4c7khoq] {
    background-color: rgb(var(--primary-600));
    color: white;
}

.session-btn-primary:hover:not(:disabled)[b-lqu4c7khoq] {
    background-color: rgb(var(--primary-700));
}

.session-btn-primary:focus[b-lqu4c7khoq] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-500), 0.3);
}

/* Microsoft Button */
.session-btn-microsoft[b-lqu4c7khoq] {
    background-color: white;
    color: rgb(var(--text-100));
    border: 1px solid rgb(var(--neutral-300));
}

.session-btn-microsoft:hover:not(:disabled)[b-lqu4c7khoq] {
    background-color: rgb(var(--back-50));
    border-color: rgb(var(--neutral-400));
}

.session-btn-microsoft:focus[b-lqu4c7khoq] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--neutral-400), 0.3);
}

.session-btn-microsoft .icon-microsoft[b-lqu4c7khoq] {
    flex-shrink: 0;
}

/* Spinner */
.session-btn-spinner[b-lqu4c7khoq] {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: sessionSpinner-b-lqu4c7khoq 0.75s linear infinite;
}

@keyframes sessionSpinner-b-lqu4c7khoq {
    to {
        transform: rotate(360deg);
    }
}

/* Modal Footer */
.session-modal-footer[b-lqu4c7khoq] {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgb(var(--neutral-200));
}

.session-btn-link[b-lqu4c7khoq] {
    background: none;
    border: none;
    padding: 0.5rem;
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(var(--primary-600));
    cursor: pointer;
    transition: color 0.15s ease;
}

.session-btn-link:hover[b-lqu4c7khoq] {
    color: rgb(var(--primary-700));
    text-decoration: underline;
}

/* Switch Account Link */
.session-switch-account[b-lqu4c7khoq] {
    text-align: center;
    margin-top: 0.75rem;
}

.session-switch-account a[b-lqu4c7khoq] {
    font-family: var(--font-family-primary);
    font-size: 0.8125rem;
    color: rgb(var(--primary-600));
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.session-switch-account a:hover[b-lqu4c7khoq] {
    color: rgb(var(--primary-700));
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .session-modal-content[b-lqu4c7khoq] {
        padding: 1.5rem;
        margin: 0.75rem;
        max-width: 100%;
    }

    .session-modal-icon[b-lqu4c7khoq] {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }

    .session-modal-icon svg[b-lqu4c7khoq] {
        width: 40px;
        height: 40px;
    }

    .session-modal-title[b-lqu4c7khoq] {
        font-size: 1.25rem;
    }

    .session-modal-message[b-lqu4c7khoq] {
        font-size: 0.875rem;
    }

    .session-btn[b-lqu4c7khoq] {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}
