/* /App.razor.rz.scp.css */
/* ==================== NOT FOUND PAGE ==================== */
.not-found-container[b-vk1d7z465f] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
    padding: 2rem;
}

.not-found-content[b-vk1d7z465f] {
    text-align: center;
    max-width: 500px;
}

.error-code[b-vk1d7z465f] {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    color: #FF6B00; /* ✅ Color sólido en lugar de gradiente con background-clip */
    text-shadow: 2px 2px 0 #FF9F43, 4px 4px 0 rgba(255, 107, 0, 0.3);
    animation: pulse-b-vk1d7z465f 2s ease-in-out infinite;
}

@keyframes pulse-b-vk1d7z465f {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.error-title[b-vk1d7z465f] {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.error-message[b-vk1d7z465f] {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.btn-home[b-vk1d7z465f] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #FF6B00, #E65100);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

    .btn-home:hover[b-vk1d7z465f] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
        color: white;
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .error-code[b-vk1d7z465f] {
        font-size: 6rem;
    }

    .error-title[b-vk1d7z465f] {
        font-size: 1.5rem;
    }

    .error-message[b-vk1d7z465f] {
        font-size: 1rem;
    }
}
/* /Pages/Aplicaciones.razor.rz.scp.css */
.page-container[b-mgiiaikg4j] {
    padding: 2rem;
    width: 100%;
}

.page-header[b-mgiiaikg4j] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title[b-mgiiaikg4j] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
}

.page-subtitle[b-mgiiaikg4j] {
    margin: 0;
    font-size: 1rem;
    color: #6B7280;
}

.btn-primary[b-mgiiaikg4j] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF6B00, #E65100);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

    .btn-primary:hover:not(:disabled)[b-mgiiaikg4j] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
    }

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

.stats-grid[b-mgiiaikg4j] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-mgiiaikg4j] {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-body[b-mgiiaikg4j] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon[b-mgiiaikg4j] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon-blue[b-mgiiaikg4j] {
    background: #DBEAFE;
}

.stat-icon-green[b-mgiiaikg4j] {
    background: #D1FAE5;
}

.stat-icon-yellow[b-mgiiaikg4j] {
    background: #FEF3C7;
}

.stat-icon-red[b-mgiiaikg4j] {
    background: #FEE2E2;
}

.stat-value[b-mgiiaikg4j] {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
}

.stat-label[b-mgiiaikg4j] {
    font-size: 0.875rem;
    color: #6B7280;
}

.table-container[b-mgiiaikg4j] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.data-table[b-mgiiaikg4j] {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th[b-mgiiaikg4j] {
        text-align: left;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #E5E7EB;
    }

    .data-table td[b-mgiiaikg4j] {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #F3F4F6;
        font-size: 0.9rem;
    }

    .data-table tbody tr:hover[b-mgiiaikg4j] {
        background: #F9FAFB;
    }

    .data-table code[b-mgiiaikg4j] {
        background: #F3F4F6;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-family: 'Courier New', monospace;
    }

.status-badge[b-mgiiaikg4j] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active[b-mgiiaikg4j] {
    background: #D1FAE5;
    color: #065F46;
}

.status-inactive[b-mgiiaikg4j] {
    background: #E5E7EB;
    color: #374151;
}

.status-warning[b-mgiiaikg4j] {
    background: #FEF3C7;
    color: #92400E;
}

.status-critical[b-mgiiaikg4j] {
    background: #FEE2E2;
    color: #991B1B;
}

.action-buttons[b-mgiiaikg4j] {
    display: flex;
    gap: 0.25rem;
}

.btn-icon-action[b-mgiiaikg4j] {
    background: none;
    border: none;
    padding: 0.375rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-mgiiaikg4j] {
    background: rgba(255, 107, 0, 0.1);
}

.btn-delete:hover[b-mgiiaikg4j] {
    background: rgba(220, 38, 38, 0.1);
}

.loading-state[b-mgiiaikg4j], .empty-state[b-mgiiaikg4j] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-mgiiaikg4j] {
    width: 48px;
    height: 48px;
    border: 4px solid #E5E7EB;
    border-top-color: #FF6B00;
    border-radius: 50%;
    animation: spin-b-mgiiaikg4j 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-mgiiaikg4j {
    to {
        transform: rotate(360deg);
    }
}

.empty-icon[b-mgiiaikg4j] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-overlay[b-mgiiaikg4j] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content[b-mgiiaikg4j] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-mgiiaikg4j] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

    .modal-header h2[b-mgiiaikg4j] {
        margin: 0;
        font-size: 1.5rem;
        color: #1F2937;
    }

.modal-close[b-mgiiaikg4j] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

    .modal-close:hover[b-mgiiaikg4j] {
        background: #F3F4F6;
    }

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

.modal-footer[b-mgiiaikg4j] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.form-group[b-mgiiaikg4j] {
    margin-bottom: 1.25rem;
}

.form-label[b-mgiiaikg4j] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.form-control[b-mgiiaikg4j] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .form-control:focus[b-mgiiaikg4j] {
        outline: none;
        border-color: #FF6B00;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    }

.form-row[b-mgiiaikg4j] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-secondary[b-mgiiaikg4j] {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1F2937;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-secondary:hover[b-mgiiaikg4j] {
        background: #F9FAFB;
    }

.btn-danger[b-mgiiaikg4j] {
    padding: 0.75rem 1.5rem;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-danger:hover:not(:disabled)[b-mgiiaikg4j] {
        background: #B91C1C;
    }

.spinner-small[b-mgiiaikg4j] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-mgiiaikg4j 0.8s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

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

    .page-header[b-mgiiaikg4j] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row[b-mgiiaikg4j] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Clientes.razor.rz.scp.css */
/* ==================== LAYOUT PRINCIPAL ==================== */
.page-container[b-j9iuryig1y] {
    padding: 2rem;
    width: 100%;
}

.page-header[b-j9iuryig1y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title[b-j9iuryig1y] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
}

.page-subtitle[b-j9iuryig1y] {
    margin: 0;
    font-size: 1rem;
    color: #6B7280;
}

/* ==================== BOTONES ==================== */
.dashboard-actions[b-j9iuryig1y] {
    display: flex;
    gap: 0.75rem;
}

.btn-primary[b-j9iuryig1y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF6B00, #E65100);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

    .btn-primary:hover:not(:disabled)[b-j9iuryig1y] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
    }

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

.btn-secondary[b-j9iuryig1y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1F2937;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-secondary:hover:not(:disabled)[b-j9iuryig1y] {
        background: #F9FAFB;
        border-color: #D1D5DB;
    }

/* ==================== STATS GRID ==================== */
.stats-grid[b-j9iuryig1y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-j9iuryig1y] {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

    .stat-card:hover[b-j9iuryig1y] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.stat-body[b-j9iuryig1y] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon[b-j9iuryig1y] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon-blue[b-j9iuryig1y] {
    background: #DBEAFE;
}

.stat-icon-green[b-j9iuryig1y] {
    background: #D1FAE5;
}

.stat-icon-red[b-j9iuryig1y] {
    background: #FEE2E2;
}

.stat-value[b-j9iuryig1y] {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
}

.stat-label[b-j9iuryig1y] {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

/* ==================== TABLA ==================== */
.table-container[b-j9iuryig1y] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.data-table[b-j9iuryig1y] {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th[b-j9iuryig1y] {
        text-align: left;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #E5E7EB;
    }

    .data-table td[b-j9iuryig1y] {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #F3F4F6;
        font-size: 0.9rem;
        vertical-align: middle;
    }

    .data-table tbody tr:hover[b-j9iuryig1y] {
        background: #F9FAFB;
    }

/* ==================== CELDA DE EMPRESA CON AVATAR ==================== */
.company-cell[b-j9iuryig1y] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ✅ CÍRCULO DE INICIALES CORREGIDO */
.company-avatar[b-j9iuryig1y] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B00, #FF9F43);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.company-info[b-j9iuryig1y] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .company-info strong[b-j9iuryig1y] {
        font-size: 0.9rem;
        color: #1F2937;
        font-weight: 600;
    }

    .company-info small[b-j9iuryig1y] {
        font-size: 0.75rem;
        color: #6B7280;
    }

/* ==================== BADGES Y CÓDIGOS ==================== */
.status-badge[b-j9iuryig1y] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active[b-j9iuryig1y] {
    background: #D1FAE5;
    color: #065F46;
}

.status-inactive[b-j9iuryig1y] {
    background: #E5E7EB;
    color: #374151;
}

.data-table code[b-j9iuryig1y] {
    background: #F3F4F6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    color: #DC2626;
}

.data-table a[b-j9iuryig1y] {
    color: #2563EB;
    text-decoration: none;
}

    .data-table a:hover[b-j9iuryig1y] {
        text-decoration: underline;
    }

/* ==================== BOTONES DE ACCIÓN ==================== */
.action-buttons[b-j9iuryig1y] {
    display: flex;
    gap: 0.25rem;
}

.btn-icon-action[b-j9iuryig1y] {
    background: none;
    border: none;
    padding: 0.375rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-j9iuryig1y] {
    background: rgba(255, 107, 0, 0.1);
}

.btn-delete:hover[b-j9iuryig1y] {
    background: rgba(220, 38, 38, 0.1);
}

/* ==================== LOADING Y EMPTY STATE ==================== */
.loading-state[b-j9iuryig1y], .empty-state[b-j9iuryig1y] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-j9iuryig1y] {
    width: 48px;
    height: 48px;
    border: 4px solid #E5E7EB;
    border-top-color: #FF6B00;
    border-radius: 50%;
    animation: spin-b-j9iuryig1y 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-j9iuryig1y {
    to {
        transform: rotate(360deg);
    }
}

.empty-icon[b-j9iuryig1y] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* ==================== MODAL ==================== */
.modal-overlay[b-j9iuryig1y] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn-b-j9iuryig1y 0.2s ease;
}

@keyframes fadeIn-b-j9iuryig1y {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content[b-j9iuryig1y] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-j9iuryig1y 0.3s ease;
}

.modal-large[b-j9iuryig1y] {
    max-width: 800px;
}

.modal-small[b-j9iuryig1y] {
    max-width: 400px;
}

@keyframes slideUp-b-j9iuryig1y {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

.modal-header[b-j9iuryig1y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

    .modal-header h2[b-j9iuryig1y] {
        margin: 0;
        font-size: 1.5rem;
        color: #1F2937;
    }

.modal-close[b-j9iuryig1y] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

    .modal-close:hover[b-j9iuryig1y] {
        background: #F3F4F6;
    }

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

.modal-footer[b-j9iuryig1y] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
}

/* ==================== FORMULARIO ==================== */
.form-group[b-j9iuryig1y] {
    margin-bottom: 1.25rem;
}

.form-label[b-j9iuryig1y] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.form-control[b-j9iuryig1y] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .form-control:focus[b-j9iuryig1y] {
        outline: none;
        border-color: #FF6B00;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    }

.form-row[b-j9iuryig1y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label[b-j9iuryig1y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
}

    .checkbox-label input[type="checkbox"][b-j9iuryig1y] {
        width: 18px;
        height: 18px;
    }

/* ==================== UTILIDADES ==================== */
.text-muted[b-j9iuryig1y] {
    color: #6B7280;
}

.alert[b-j9iuryig1y] {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-danger[b-j9iuryig1y] {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.spinner-small[b-j9iuryig1y] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-j9iuryig1y 0.8s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

.btn-danger[b-j9iuryig1y] {
    padding: 0.75rem 1.5rem;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-danger:hover:not(:disabled)[b-j9iuryig1y] {
        background: #B91C1C;
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .page-container[b-j9iuryig1y] {
        padding: 1rem;
    }

    .page-header[b-j9iuryig1y] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row[b-j9iuryig1y] {
        grid-template-columns: 1fr;
    }

    .stats-grid[b-j9iuryig1y] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Dispositivos.razor.rz.scp.css */
.page-container[b-0k1gycvsdr] {
    padding: 2rem;
    width: 100%;
}

.page-header[b-0k1gycvsdr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title[b-0k1gycvsdr] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
}

.page-subtitle[b-0k1gycvsdr] {
    margin: 0;
    font-size: 1rem;
    color: #6B7280;
}

.btn-primary[b-0k1gycvsdr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF6B00, #E65100);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

    .btn-primary:hover:not(:disabled)[b-0k1gycvsdr] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
    }

    .btn-primary:disabled[b-0k1gycvsdr] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.stats-grid[b-0k1gycvsdr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-0k1gycvsdr] {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-body[b-0k1gycvsdr] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon[b-0k1gycvsdr] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon-blue[b-0k1gycvsdr] {
    background: #DBEAFE;
}

.stat-icon-green[b-0k1gycvsdr] {
    background: #D1FAE5;
}

.stat-icon-yellow[b-0k1gycvsdr] {
    background: #FEF3C7;
}

.stat-icon-red[b-0k1gycvsdr] {
    background: #FEE2E2;
}

.stat-value[b-0k1gycvsdr] {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
}

.stat-label[b-0k1gycvsdr] {
    font-size: 0.875rem;
    color: #6B7280;
}

.table-container[b-0k1gycvsdr] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.data-table[b-0k1gycvsdr] {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th[b-0k1gycvsdr] {
        text-align: left;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #E5E7EB;
    }

    .data-table td[b-0k1gycvsdr] {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #F3F4F6;
        font-size: 0.9rem;
    }

    .data-table tbody tr:hover[b-0k1gycvsdr] {
        background: #F9FAFB;
    }

    .data-table code[b-0k1gycvsdr] {
        background: #F3F4F6;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-family: 'Courier New', monospace;
    }

.status-badge[b-0k1gycvsdr] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active[b-0k1gycvsdr] {
    background: #D1FAE5;
    color: #065F46;
}

.status-inactive[b-0k1gycvsdr] {
    background: #E5E7EB;
    color: #374151;
}

.status-warning[b-0k1gycvsdr] {
    background: #FEF3C7;
    color: #92400E;
}

.status-critical[b-0k1gycvsdr] {
    background: #FEE2E2;
    color: #991B1B;
}

.action-buttons[b-0k1gycvsdr] {
    display: flex;
    gap: 0.25rem;
}

.btn-icon-action[b-0k1gycvsdr] {
    background: none;
    border: none;
    padding: 0.375rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-0k1gycvsdr] {
    background: rgba(255, 107, 0, 0.1);
}

.btn-delete:hover[b-0k1gycvsdr] {
    background: rgba(220, 38, 38, 0.1);
}

.loading-state[b-0k1gycvsdr], .empty-state[b-0k1gycvsdr] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-0k1gycvsdr] {
    width: 48px;
    height: 48px;
    border: 4px solid #E5E7EB;
    border-top-color: #FF6B00;
    border-radius: 50%;
    animation: spin-b-0k1gycvsdr 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-0k1gycvsdr {
    to {
        transform: rotate(360deg);
    }
}

.empty-icon[b-0k1gycvsdr] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-overlay[b-0k1gycvsdr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content[b-0k1gycvsdr] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-0k1gycvsdr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

    .modal-header h2[b-0k1gycvsdr] {
        margin: 0;
        font-size: 1.5rem;
        color: #1F2937;
    }

.modal-close[b-0k1gycvsdr] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

    .modal-close:hover[b-0k1gycvsdr] {
        background: #F3F4F6;
    }

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

.modal-footer[b-0k1gycvsdr] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.form-group[b-0k1gycvsdr] {
    margin-bottom: 1.25rem;
}

.form-label[b-0k1gycvsdr] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.form-control[b-0k1gycvsdr] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .form-control:focus[b-0k1gycvsdr] {
        outline: none;
        border-color: #FF6B00;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    }

.form-row[b-0k1gycvsdr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-secondary[b-0k1gycvsdr] {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1F2937;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-secondary:hover[b-0k1gycvsdr] {
        background: #F9FAFB;
    }

.btn-danger[b-0k1gycvsdr] {
    padding: 0.75rem 1.5rem;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-danger:hover:not(:disabled)[b-0k1gycvsdr] {
        background: #B91C1C;
    }

.spinner-small[b-0k1gycvsdr] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-0k1gycvsdr 0.8s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

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

    .page-header[b-0k1gycvsdr] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row[b-0k1gycvsdr] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Index.razor.rz.scp.css */
.dashboard-page[b-ro2j3a0m9d] {
    padding: 2rem;
    width: 100%;
}

.dashboard-header[b-ro2j3a0m9d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-title[b-ro2j3a0m9d] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1F2937;
}

.dashboard-actions[b-ro2j3a0m9d] {
    display: flex;
    gap: 0.5rem;
}

.btn-icon[b-ro2j3a0m9d] {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

    .btn-icon:hover[b-ro2j3a0m9d] {
        background: #F3F4F6;
        transform: translateY(-1px);
    }

.stats-grid[b-ro2j3a0m9d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-ro2j3a0m9d] {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

    .stat-card:hover[b-ro2j3a0m9d] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.stat-header[b-ro2j3a0m9d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-title[b-ro2j3a0m9d] {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-menu[b-ro2j3a0m9d] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #9CA3AF;
    padding: 0;
    line-height: 1;
}

.stat-body[b-ro2j3a0m9d] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon[b-ro2j3a0m9d] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon-blue[b-ro2j3a0m9d] {
    background: #DBEAFE;
}

.stat-icon-green[b-ro2j3a0m9d] {
    background: #D1FAE5;
}

.stat-icon-yellow[b-ro2j3a0m9d] {
    background: #FEF3C7;
}

.stat-icon-red[b-ro2j3a0m9d] {
    background: #FEE2E2;
}

.stat-value[b-ro2j3a0m9d] {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
}

.stat-label[b-ro2j3a0m9d] {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

.content-grid[b-ro2j3a0m9d] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.content-card[b-ro2j3a0m9d] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    /* ✅ CAMBIO: overflow: hidden → overflow: visible */
    /* El overflow: hidden recortaba los anillos del spinner (120% y 140%) */
    overflow: visible;
}

    .content-card.large[b-ro2j3a0m9d] {
        grid-column: 1 / -1;
    }

.card-header[b-ro2j3a0m9d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #E5E7EB;
}

.card-title[b-ro2j3a0m9d] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
}

.card-menu[b-ro2j3a0m9d] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #9CA3AF;
    padding: 0;
}

.card-body[b-ro2j3a0m9d] {
    padding: 1.25rem;
    /* ✅ NUEVO: Altura mínima para que el spinner tenga espacio */
    min-height: 200px;
    position: relative;
}

    /* ✅ NUEVO: Contenedor específico para el LoadingSpinner */
    .card-body .loading-container[b-ro2j3a0m9d] {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
        width: 100%;
        padding: 2rem 0;
    }

.table-responsive[b-ro2j3a0m9d] {
    overflow-x: auto;
}

.data-table[b-ro2j3a0m9d] {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th[b-ro2j3a0m9d] {
        text-align: left;
        padding: 0.75rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #E5E7EB;
    }

    .data-table td[b-ro2j3a0m9d] {
        padding: 0.75rem;
        border-bottom: 1px solid #F3F4F6;
        font-size: 0.9rem;
    }

    .data-table tbody tr:hover[b-ro2j3a0m9d] {
        background: #F9FAFB;
    }

    .data-table code[b-ro2j3a0m9d] {
        background: #F3F4F6;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-family: 'Courier New', monospace;
    }

.days-badge[b-ro2j3a0m9d] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.days-ok[b-ro2j3a0m9d] {
    background: #D1FAE5;
    color: #065F46;
}

.days-warning[b-ro2j3a0m9d] {
    background: #FEF3C7;
    color: #92400E;
}

.days-critical[b-ro2j3a0m9d] {
    background: #FEE2E2;
    color: #991B1B;
}

.days-expired[b-ro2j3a0m9d] {
    background: #7F1D1D;
    color: white;
}

.chart-container[b-ro2j3a0m9d] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chart-row[b-ro2j3a0m9d] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chart-label[b-ro2j3a0m9d] {
    width: 120px;
    font-size: 0.85rem;
    color: #4B5563;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chart-bar-container[b-ro2j3a0m9d] {
    flex: 1;
    height: 24px;
    background: #F3F4F6;
    border-radius: 4px;
    overflow: hidden;
}

.chart-bar[b-ro2j3a0m9d] {
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #E65100);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.chart-value[b-ro2j3a0m9d] {
    width: 30px;
    text-align: right;
    font-weight: 600;
    color: #1F2937;
}

.loading-state[b-ro2j3a0m9d], .empty-state[b-ro2j3a0m9d] {
    text-align: center;
    padding: 2rem;
    color: #6B7280;
}

.spinner[b-ro2j3a0m9d] {
    width: 32px;
    height: 32px;
    border: 3px solid #E5E7EB;
    border-top-color: #FF6B00;
    border-radius: 50%;
    animation: spin-b-ro2j3a0m9d 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-ro2j3a0m9d {
    to {
        transform: rotate(360deg);
    }
}

.empty-icon[b-ro2j3a0m9d] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .content-grid[b-ro2j3a0m9d] {
        grid-template-columns: 1fr;
    }
}

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

    .stats-grid[b-ro2j3a0m9d] {
        grid-template-columns: 1fr;
    }

    .dashboard-header[b-ro2j3a0m9d] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
/* /Pages/Licencias.razor.rz.scp.css */
.page-container[b-d4k1al2jh4] {
    padding: 2rem;
    width: 100%;
}

.page-header[b-d4k1al2jh4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title[b-d4k1al2jh4] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
}

.page-subtitle[b-d4k1al2jh4] {
    margin: 0;
    font-size: 1rem;
    color: #6B7280;
}

.btn-primary[b-d4k1al2jh4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF6B00, #E65100);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

    .btn-primary:hover:not(:disabled)[b-d4k1al2jh4] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
    }

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

.stats-grid[b-d4k1al2jh4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-d4k1al2jh4] {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-body[b-d4k1al2jh4] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon[b-d4k1al2jh4] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon-blue[b-d4k1al2jh4] {
    background: #DBEAFE;
}

.stat-icon-green[b-d4k1al2jh4] {
    background: #D1FAE5;
}

.stat-icon-yellow[b-d4k1al2jh4] {
    background: #FEF3C7;
}

.stat-icon-red[b-d4k1al2jh4] {
    background: #FEE2E2;
}

.stat-value[b-d4k1al2jh4] {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
}

.stat-label[b-d4k1al2jh4] {
    font-size: 0.875rem;
    color: #6B7280;
}

.table-container[b-d4k1al2jh4] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.data-table[b-d4k1al2jh4] {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th[b-d4k1al2jh4] {
        text-align: left;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #E5E7EB;
    }

    .data-table td[b-d4k1al2jh4] {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #F3F4F6;
        font-size: 0.9rem;
    }

    .data-table tbody tr:hover[b-d4k1al2jh4] {
        background: #F9FAFB;
    }

    .data-table code[b-d4k1al2jh4] {
        background: #F3F4F6;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-family: 'Courier New', monospace;
    }

.status-badge[b-d4k1al2jh4] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active[b-d4k1al2jh4] {
    background: #D1FAE5;
    color: #065F46;
}

.status-inactive[b-d4k1al2jh4] {
    background: #E5E7EB;
    color: #374151;
}

.status-warning[b-d4k1al2jh4] {
    background: #FEF3C7;
    color: #92400E;
}

.status-critical[b-d4k1al2jh4] {
    background: #FEE2E2;
    color: #991B1B;
}

.action-buttons[b-d4k1al2jh4] {
    display: flex;
    gap: 0.25rem;
}

.btn-icon-action[b-d4k1al2jh4] {
    background: none;
    border: none;
    padding: 0.375rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-d4k1al2jh4] {
    background: rgba(255, 107, 0, 0.1);
}

.btn-delete:hover[b-d4k1al2jh4] {
    background: rgba(220, 38, 38, 0.1);
}

.loading-state[b-d4k1al2jh4], .empty-state[b-d4k1al2jh4] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-d4k1al2jh4] {
    width: 48px;
    height: 48px;
    border: 4px solid #E5E7EB;
    border-top-color: #FF6B00;
    border-radius: 50%;
    animation: spin-b-d4k1al2jh4 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-d4k1al2jh4 {
    to {
        transform: rotate(360deg);
    }
}

.empty-icon[b-d4k1al2jh4] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-overlay[b-d4k1al2jh4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content[b-d4k1al2jh4] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-d4k1al2jh4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

    .modal-header h2[b-d4k1al2jh4] {
        margin: 0;
        font-size: 1.5rem;
        color: #1F2937;
    }

.modal-close[b-d4k1al2jh4] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

    .modal-close:hover[b-d4k1al2jh4] {
        background: #F3F4F6;
    }

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

.modal-footer[b-d4k1al2jh4] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.form-group[b-d4k1al2jh4] {
    margin-bottom: 1.25rem;
}

.form-label[b-d4k1al2jh4] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.form-control[b-d4k1al2jh4] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .form-control:focus[b-d4k1al2jh4] {
        outline: none;
        border-color: #FF6B00;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    }

.form-row[b-d4k1al2jh4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-secondary[b-d4k1al2jh4] {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1F2937;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-secondary:hover[b-d4k1al2jh4] {
        background: #F9FAFB;
    }

.btn-danger[b-d4k1al2jh4] {
    padding: 0.75rem 1.5rem;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-danger:hover:not(:disabled)[b-d4k1al2jh4] {
        background: #B91C1C;
    }

.spinner-small[b-d4k1al2jh4] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-d4k1al2jh4 0.8s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

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

    .page-header[b-d4k1al2jh4] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row[b-d4k1al2jh4] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/LoadingPage.razor.rz.scp.css */
/*LoadingPage.razor.css*/
.loading-page[b-rrzy91p62w] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%; /* ✅ NUEVO: Ancho completo */
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box; /* ✅ NUEVO */
}

.bg-shape[b-rrzy91p62w] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.shape-1[b-rrzy91p62w] {
    width: 400px;
    height: 400px;
    background: #FF6B00;
    top: -100px;
    left: -100px;
    animation: float-b-rrzy91p62w 6s ease-in-out infinite;
}

.shape-2[b-rrzy91p62w] {
    width: 300px;
    height: 300px;
    background: #FF9F43;
    bottom: -50px;
    right: -50px;
    animation: float-b-rrzy91p62w 8s ease-in-out infinite reverse;
}

@keyframes float-b-rrzy91p62w {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.loading-content[b-rrzy91p62w] {
    text-align: center;
    z-index: 10;
    width: 100%; /* ✅ NUEVO */
    max-width: 500px; /* ✅ NUEVO */
    margin: 0 auto; /* ✅ NUEVO: Centrado */
}

.logo-wrapper[b-rrzy91p62w] {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 3rem;
}

.logo-main[b-rrzy91p62w] {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.6));
    animation: logoPulse-b-rrzy91p62w 2s ease-in-out infinite;
}

@keyframes logoPulse-b-rrzy91p62w {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-ring[b-rrzy91p62w] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 4px solid #FF6B00;
    border-radius: 50%;
    animation: pulse-b-rrzy91p62w 2s ease-out infinite;
    opacity: 0;
}

.ring-2[b-rrzy91p62w] {
    animation-delay: 0.67s;
}

.ring-3[b-rrzy91p62w] {
    animation-delay: 1.33s;
}

@keyframes pulse-b-rrzy91p62w {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

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

.loading-title[b-rrzy91p62w] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: titleGlow-b-rrzy91p62w 2s ease-in-out infinite;
}

@keyframes titleGlow-b-rrzy91p62w {
    0%, 100% {
        text-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
    }

    50% {
        text-shadow: 0 4px 20px rgba(255, 107, 0, 0.8);
    }
}

.spinner-container[b-rrzy91p62w] {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring[b-rrzy91p62w] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #FF6B00;
    border-radius: 50%;
    animation: spin-b-rrzy91p62w 1.5s linear infinite;
}

.ring-inner[b-rrzy91p62w] {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #FF9F43;
    animation-duration: 1s;
    animation-direction: reverse;
}

@keyframes spin-b-rrzy91p62w {
    to {
        transform: rotate(360deg);
    }
}

.loading-message[b-rrzy91p62w] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInOut-b-rrzy91p62w 2s ease-in-out infinite;
}

@keyframes fadeInOut-b-rrzy91p62w {
    0%, 100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* ✅ MÓVIL: Asegurar centrado */
@media (max-width: 768px) {
    .loading-page[b-rrzy91p62w] {
        padding: 1rem;
        box-sizing: border-box;
    }

    .logo-wrapper[b-rrzy91p62w] {
        width: 140px;
        height: 140px;
    }

    .loading-title[b-rrzy91p62w] {
        font-size: 1.8rem;
    }

    .spinner-container[b-rrzy91p62w] {
        width: 60px;
        height: 60px;
    }

    .loading-content[b-rrzy91p62w] {
        width: 100%;
        padding: 0 1rem;
    }
}
/* /Pages/Login.razor.rz.scp.css */
/*login.razor.css*/
/* ==================== LAYOUT SPLIT ==================== */
.login-split[b-614fct5rqs] {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ==================== PANEL IZQUIERDO (Branding - Desktop) ==================== */
.login-branding[b-614fct5rqs] {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    overflow: hidden;
    height: 100vh;
}

/* Background effects con orbs animados */
.branding-bg-effects[b-614fct5rqs] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb[b-614fct5rqs] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-b-614fct5rqs 20s infinite ease-in-out;
}

.orb-1[b-614fct5rqs] {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2[b-614fct5rqs] {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.orb-3[b-614fct5rqs] {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes float-b-614fct5rqs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Patrón de circuitos */
.circuit-pattern[b-614fct5rqs] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='circuit' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M10 10 L40 10 L40 40 L70 40 L70 70' stroke='%233B82F6' stroke-width='1.5' fill='none' opacity='0.25'/%3E%3Cpath d='M80 10 L80 30 L60 30 L60 60' stroke='%233B82F6' stroke-width='1.5' fill='none' opacity='0.25'/%3E%3Cpath d='M10 80 L30 80 L30 60 L50 60' stroke='%233B82F6' stroke-width='1.5' fill='none' opacity='0.25'/%3E%3Ccircle cx='10' cy='10' r='3' fill='%233B82F6' opacity='0.35'/%3E%3Ccircle cx='40' cy='40' r='3' fill='%233B82F6' opacity='0.35'/%3E%3Ccircle cx='70' cy='70' r='3' fill='%233B82F6' opacity='0.35'/%3E%3Ccircle cx='80' cy='10' r='3' fill='%233B82F6' opacity='0.35'/%3E%3Ccircle cx='60' cy='60' r='3' fill='%233B82F6' opacity='0.35'/%3E%3Ccircle cx='10' cy='80' r='3' fill='%233B82F6' opacity='0.35'/%3E%3Ccircle cx='50' cy='60' r='3' fill='%233B82F6' opacity='0.35'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23circuit)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 1;
}

/* Overlay decorativo */
.branding-overlay[b-614fct5rqs] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

/* Contenido del branding */
.branding-content[b-614fct5rqs] {
    position: relative;
    z-index: 3;
    max-width: 650px;
    width: 100%;
    overflow-y: auto;
    max-height: calc(100vh - 6rem);
    padding-right: 1rem;
}

    .branding-content[b-614fct5rqs]::-webkit-scrollbar {
        width: 4px;
    }

    .branding-content[b-614fct5rqs]::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 2px;
    }

    .branding-content[b-614fct5rqs]::-webkit-scrollbar-thumb {
        background: rgba(59, 130, 246, 0.4);
        border-radius: 2px;
    }

/* Logo wrapper */
.brand-logo-wrapper[b-614fct5rqs] {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.logo-badge[b-614fct5rqs] {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

    .logo-badge:hover[b-614fct5rqs] {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 40px rgba(59, 130, 246, 0.25);
    }

.logo-white[b-614fct5rqs] {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.logo-glow[b-614fct5rqs] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    z-index: 1;
    filter: blur(20px);
    animation: pulse-b-614fct5rqs 4s infinite ease-in-out;
}

@keyframes pulse-b-614fct5rqs {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Título principal */
.brand-main-title[b-614fct5rqs] {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.25);
}

.brand-tagline[b-614fct5rqs] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Separador */
.brand-divider-wrapper[b-614fct5rqs] {
    margin-bottom: 2rem;
    position: relative;
}

.brand-divider[b-614fct5rqs] {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA, #3B82F6);
    border-radius: 2px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
}

.divider-dots[b-614fct5rqs] {
    display: flex;
    gap: 8px;
}

    .divider-dots span[b-614fct5rqs] {
        width: 6px;
        height: 6px;
        background: #3B82F6;
        border-radius: 50%;
        display: inline-block;
        animation: dotPulse-b-614fct5rqs 2s infinite ease-in-out;
    }

        .divider-dots span:nth-child(2)[b-614fct5rqs] {
            animation-delay: 0.2s;
        }

        .divider-dots span:nth-child(3)[b-614fct5rqs] {
            animation-delay: 0.4s;
        }

@keyframes dotPulse-b-614fct5rqs {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

/* Features Grid */
.features-grid[b-614fct5rqs] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-card[b-614fct5rqs] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .feature-card:hover[b-614fct5rqs] {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.6);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.2);
    }

.feature-icon-wrapper[b-614fct5rqs] {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.feature-icon[b-614fct5rqs] {
    width: 22px;
    height: 22px;
    stroke: #FFFFFF;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-text[b-614fct5rqs] {
    flex: 1;
}

    .feature-text h3[b-614fct5rqs] {
        font-size: 0.95rem;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0 0 0.25rem 0;
        letter-spacing: 0.3px;
    }

    .feature-text p[b-614fct5rqs] {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
        line-height: 1.4;
        font-weight: 400;
    }

/* Elementos flotantes decorativos */
.floating-elements[b-614fct5rqs] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-item[b-614fct5rqs] {
    position: absolute;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: floatElement-b-614fct5rqs 15s infinite ease-in-out;
}

.float-1[b-614fct5rqs] {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2[b-614fct5rqs] {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 75%;
    animation-delay: -5s;
}

.float-3[b-614fct5rqs] {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes floatElement-b-614fct5rqs {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* ==================== PANEL DERECHO (Formulario) ==================== */
.login-form-panel[b-614fct5rqs] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    position: relative;
    height: 100vh;
}

/* FRANJA SUPERIOR MÓVIL */
.mobile-branding-bar[b-614fct5rqs] {
    display: none !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 0.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: visible;
    height: auto;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

    /* Textura de circuitos móvil */
    .mobile-branding-bar[b-614fct5rqs]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='circuit-mobile' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M10 10 L40 10 L40 40 L70 40 L70 70' stroke='%233B82F6' stroke-width='1.5' fill='none' opacity='0.3'/%3E%3Cpath d='M80 10 L80 30 L60 30 L60 60' stroke='%233B82F6' stroke-width='1.5' fill='none' opacity='0.3'/%3E%3Cpath d='M10 80 L30 80 L30 60 L50 60' stroke='%233B82F6' stroke-width='1.5' fill='none' opacity='0.3'/%3E%3Ccircle cx='10' cy='10' r='3' fill='%233B82F6' opacity='0.4'/%3E%3Ccircle cx='40' cy='40' r='3' fill='%233B82F6' opacity='0.4'/%3E%3Ccircle cx='70' cy='70' r='3' fill='%233B82F6' opacity='0.4'/%3E%3Ccircle cx='80' cy='10' r='3' fill='%233B82F6' opacity='0.4'/%3E%3Ccircle cx='60' cy='60' r='3' fill='%233B82F6' opacity='0.4'/%3E%3Ccircle cx='10' cy='80' r='3' fill='%233B82F6' opacity='0.4'/%3E%3Ccircle cx='50' cy='60' r='3' fill='%233B82F6' opacity='0.4'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23circuit-mobile)'/%3E%3C/svg%3E");
        background-size: 200px 200px;
        pointer-events: none;
        z-index: 0;
    }

    /* Efecto de brillo en la barra móvil */
    .mobile-branding-bar[b-614fct5rqs]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

/* LOGO MÓVIL */
.mobile-logo[b-614fct5rqs] {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    width: auto;
    height: auto;
    max-height: 90px;
    min-height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
    display: block;
    margin: 0 auto;
}

/* Contenedor del formulario - CENTRADO VERTICALMENTE */
.login-form-container[b-614fct5rqs] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    overflow-y: auto;
}

.form-header[b-614fct5rqs] {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.form-title[b-614fct5rqs] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.4rem 0;
}

.form-subtitle[b-614fct5rqs] {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

/* Alerta de error */
.alert[b-614fct5rqs] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    width: 100%;
}

.alert-danger[b-614fct5rqs] {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.alert-icon[b-614fct5rqs] {
    width: 20px;
    height: 20px;
    stroke: #991B1B;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

/* Formulario */
.login-form[b-614fct5rqs] {
    margin-bottom: 1rem;
    width: 100%;
}

.form-group[b-614fct5rqs] {
    margin-bottom: 1.25rem;
}

.form-label[b-614fct5rqs] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.form-control[b-614fct5rqs] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #FAFAFA;
    color: #1F2937;
}

    .form-control:focus[b-614fct5rqs] {
        outline: none;
        border-color: #3B82F6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        background: white;
    }

    .form-control:disabled[b-614fct5rqs] {
        background-color: #F3F4F6;
        cursor: not-allowed;
    }

/* Botón de login */
.form-actions[b-614fct5rqs] {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    width: 100%;
}

.btn-login[b-614fct5rqs] {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    letter-spacing: 0.5px;
}

    .btn-login:hover:not(:disabled)[b-614fct5rqs] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
    }

    .btn-login:disabled[b-614fct5rqs] {
        opacity: 0.7;
        cursor: not-allowed;
    }

/* Spinner */
.spinner[b-614fct5rqs] {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-614fct5rqs 0.8s linear infinite;
}

@keyframes spin-b-614fct5rqs {
    to {
        transform: rotate(360deg);
    }
}

/* Footer del formulario */
.form-footer[b-614fct5rqs] {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 0;
    width: 100%;
}

    .form-footer p[b-614fct5rqs] {
        margin: 0;
        font-size: 0.9rem;
        color: #6B7280;
    }

.link-register[b-614fct5rqs] {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
}

    .link-register:hover[b-614fct5rqs] {
        text-decoration: underline;
    }

/* Slogan en el panel derecho */
.form-slogan-section[b-614fct5rqs] {
    text-align: center;
    padding: 1rem 0 0.75rem;
    width: 100%;
}

.form-slogan[b-614fct5rqs] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #374151;
    flex-wrap: wrap;
}

    .form-slogan .slogan-word[b-614fct5rqs] {
        color: #6B7280;
        transition: all 0.3s ease;
    }

        .form-slogan .slogan-word.highlight[b-614fct5rqs] {
            color: #3B82F6;
            font-weight: 800;
        }

    .form-slogan .slogan-divider[b-614fct5rqs] {
        color: #3B82F6;
        opacity: 0.5;
        font-size: 0.75rem;
    }

.slogan-underline[b-614fct5rqs] {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, transparent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Copyright en el panel derecho */
.form-copyright[b-614fct5rqs] {
    text-align: center;
    padding: 0.5rem 0 1rem;
    width: 100%;
}

    .form-copyright p[b-614fct5rqs] {
        margin: 0;
        font-size: 0.75rem;
        color: #9CA3AF;
        line-height: 1.5;
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .login-branding[b-614fct5rqs] {
        padding: 2.5rem 3rem;
    }

    .brand-main-title[b-614fct5rqs] {
        font-size: 1.75rem;
    }

    .features-grid[b-614fct5rqs] {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .desktop-branding[b-614fct5rqs] {
        display: none !important;
    }

    .mobile-branding-bar[b-614fct5rqs] {
        display: flex !important;
    }

    .login-form-panel[b-614fct5rqs] {
        flex: 1;
        min-height: 100vh;
        background: #FFFFFF;
    }

    .login-form-container[b-614fct5rqs] {
        padding: 1.5rem 1.25rem;
        max-width: 100%;
    }

    .form-title[b-614fct5rqs] {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .mobile-branding-bar[b-614fct5rqs] {
        padding: 0.4rem 1rem;
    }

    .mobile-logo[b-614fct5rqs] {
        max-width: 90vw;
        max-height: 80px;
        min-height: 60px;
    }

    .login-form-container[b-614fct5rqs] {
        padding: 1.25rem 1rem;
    }

    .form-title[b-614fct5rqs] {
        font-size: 1.5rem;
    }

    .form-control[b-614fct5rqs] {
        padding: 0.8rem;
    }

    .btn-login[b-614fct5rqs] {
        padding: 0.85rem;
    }

    .form-slogan[b-614fct5rqs] {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .form-copyright p[b-614fct5rqs] {
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .mobile-branding-bar[b-614fct5rqs] {
        padding: 0.3rem 1rem;
    }

    .mobile-logo[b-614fct5rqs] {
        max-height: 70px;
        min-height: 55px;
    }

    .form-title[b-614fct5rqs] {
        font-size: 1.4rem;
    }
}
/* /Pages/PendingActivation.razor.rz.scp.css */
.pending-page[b-7wox21wtp8] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #FFF8F0;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 1rem;
}

.pending-card[b-7wox21wtp8] {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pending-header-banner[b-7wox21wtp8] {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 2.5rem 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .pending-header-banner[b-7wox21wtp8]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b00, #e65100);
    }

.logo-image[b-7wox21wtp8] {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.pending-body[b-7wox21wtp8] {
    padding: 2.5rem 2rem;
    text-align: center;
}

.pending-icon[b-7wox21wtp8] {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse-b-7wox21wtp8 2s ease-in-out infinite;
}

@keyframes pulse-b-7wox21wtp8 {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.pending-title[b-7wox21wtp8] {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
}

.pending-message[b-7wox21wtp8] {
    margin: 0 0 2rem 0;
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

.pending-info[b-7wox21wtp8] {
    background: #F3F4F6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

    .pending-info h3[b-7wox21wtp8] {
        margin: 0 0 1rem 0;
        font-size: 1rem;
        color: #1F2937;
    }

    .pending-info ol[b-7wox21wtp8] {
        margin: 0;
        padding-left: 1.5rem;
        color: #4B5563;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .pending-info li[b-7wox21wtp8] {
        margin-bottom: 0.5rem;
    }

.pending-actions[b-7wox21wtp8] {
    display: flex;
    justify-content: center;
}

.btn-logout[b-7wox21wtp8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1F2937;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-logout:hover[b-7wox21wtp8] {
        background: #F9FAFB;
        border-color: #D1D5DB;
    }

.pending-footer[b-7wox21wtp8] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.copyright[b-7wox21wtp8] {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin: 0;
}

.bg-shape[b-7wox21wtp8] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.shape-1[b-7wox21wtp8] {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.15);
    top: -100px;
    left: -100px;
}

.shape-2[b-7wox21wtp8] {
    width: 300px;
    height: 300px;
    background: rgba(255, 158, 64, 0.15);
    bottom: -50px;
    right: -50px;
}

@media (max-width: 480px) {
    .pending-body[b-7wox21wtp8] {
        padding: 1.5rem;
    }

    .pending-header-banner[b-7wox21wtp8] {
        padding: 2rem 1.5rem 1.5rem;
    }

    .logo-image[b-7wox21wtp8] {
        height: 50px;
    }

    .pending-title[b-7wox21wtp8] {
        font-size: 1.25rem;
    }
}
/* /Pages/Promotores.razor.rz.scp.css */
.page-container[b-57ogalulzh] {
    padding: 2rem;
    width: 100%;
}

.page-header[b-57ogalulzh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title[b-57ogalulzh] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
}

.page-subtitle[b-57ogalulzh] {
    margin: 0;
    font-size: 1rem;
    color: #6B7280;
}

.btn-primary[b-57ogalulzh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF6B00, #E65100);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

    .btn-primary:hover:not(:disabled)[b-57ogalulzh] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
    }

    .btn-primary:disabled[b-57ogalulzh] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.stats-grid[b-57ogalulzh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-57ogalulzh] {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-body[b-57ogalulzh] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon[b-57ogalulzh] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon-blue[b-57ogalulzh] {
    background: #DBEAFE;
}

.stat-icon-green[b-57ogalulzh] {
    background: #D1FAE5;
}

.stat-icon-yellow[b-57ogalulzh] {
    background: #FEF3C7;
}

.stat-icon-red[b-57ogalulzh] {
    background: #FEE2E2;
}

.stat-value[b-57ogalulzh] {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
}

.stat-label[b-57ogalulzh] {
    font-size: 0.875rem;
    color: #6B7280;
}

.table-container[b-57ogalulzh] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.data-table[b-57ogalulzh] {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th[b-57ogalulzh] {
        text-align: left;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #E5E7EB;
    }

    .data-table td[b-57ogalulzh] {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #F3F4F6;
        font-size: 0.9rem;
    }

    .data-table tbody tr:hover[b-57ogalulzh] {
        background: #F9FAFB;
    }

    .data-table code[b-57ogalulzh] {
        background: #F3F4F6;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-family: 'Courier New', monospace;
    }

.status-badge[b-57ogalulzh] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active[b-57ogalulzh] {
    background: #D1FAE5;
    color: #065F46;
}

.status-inactive[b-57ogalulzh] {
    background: #E5E7EB;
    color: #374151;
}

.status-warning[b-57ogalulzh] {
    background: #FEF3C7;
    color: #92400E;
}

.status-critical[b-57ogalulzh] {
    background: #FEE2E2;
    color: #991B1B;
}

.action-buttons[b-57ogalulzh] {
    display: flex;
    gap: 0.25rem;
}

.btn-icon-action[b-57ogalulzh] {
    background: none;
    border: none;
    padding: 0.375rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-57ogalulzh] {
    background: rgba(255, 107, 0, 0.1);
}

.btn-delete:hover[b-57ogalulzh] {
    background: rgba(220, 38, 38, 0.1);
}

.loading-state[b-57ogalulzh], .empty-state[b-57ogalulzh] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-57ogalulzh] {
    width: 48px;
    height: 48px;
    border: 4px solid #E5E7EB;
    border-top-color: #FF6B00;
    border-radius: 50%;
    animation: spin-b-57ogalulzh 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-57ogalulzh {
    to {
        transform: rotate(360deg);
    }
}

.empty-icon[b-57ogalulzh] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-overlay[b-57ogalulzh] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content[b-57ogalulzh] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-57ogalulzh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

    .modal-header h2[b-57ogalulzh] {
        margin: 0;
        font-size: 1.5rem;
        color: #1F2937;
    }

.modal-close[b-57ogalulzh] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

    .modal-close:hover[b-57ogalulzh] {
        background: #F3F4F6;
    }

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

.modal-footer[b-57ogalulzh] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.form-group[b-57ogalulzh] {
    margin-bottom: 1.25rem;
}

.form-label[b-57ogalulzh] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.form-control[b-57ogalulzh] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .form-control:focus[b-57ogalulzh] {
        outline: none;
        border-color: #FF6B00;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    }

.form-row[b-57ogalulzh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-secondary[b-57ogalulzh] {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1F2937;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-secondary:hover[b-57ogalulzh] {
        background: #F9FAFB;
    }

.btn-danger[b-57ogalulzh] {
    padding: 0.75rem 1.5rem;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-danger:hover:not(:disabled)[b-57ogalulzh] {
        background: #B91C1C;
    }

.spinner-small[b-57ogalulzh] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-57ogalulzh 0.8s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

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

    .page-header[b-57ogalulzh] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row[b-57ogalulzh] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Register.razor.rz.scp.css */
/* ==================== LAYOUT PRINCIPAL ==================== */
.register-page[b-2de12zfzrh] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #FFF8F0;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

/* Formas de fondo */
.bg-shape[b-2de12zfzrh] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.shape-1[b-2de12zfzrh] {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.15);
    top: -100px;
    left: -100px;
}

.shape-2[b-2de12zfzrh] {
    width: 300px;
    height: 300px;
    background: rgba(255, 158, 64, 0.15);
    bottom: -50px;
    right: -50px;
}

/* ==================== TARJETA ==================== */
.register-card[b-2de12zfzrh] {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* ==================== CABECERA OSCURA ==================== */
.register-header-banner[b-2de12zfzrh] {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 2rem 2rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    /* Línea naranja inferior del header */
    .register-header-banner[b-2de12zfzrh]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b00, #e65100);
    }

.logo-image[b-2de12zfzrh] {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* ==================== CUERPO DEL FORMULARIO ==================== */
.register-body[b-2de12zfzrh] {
    padding: 2rem 2.5rem 2.5rem;
}

.app-title[b-2de12zfzrh] {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    text-align: center;
}

.app-subtitle[b-2de12zfzrh] {
    margin: 0 0 2rem 0;
    font-size: 0.95rem;
    color: #6B7280;
    text-align: center;
}

/* ==================== FORMULARIO ==================== */
.form-group[b-2de12zfzrh] {
    margin-bottom: 1.25rem;
}

.form-label[b-2de12zfzrh] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.form-control[b-2de12zfzrh] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #FAFAFA;
}

    .form-control:focus[b-2de12zfzrh] {
        outline: none;
        border-color: #FF6B00;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
        background: white;
    }

    .form-control:disabled[b-2de12zfzrh] {
        background-color: #F3F4F6;
        cursor: not-allowed;
    }

/* ==================== BOTÓN (MISMO ESTILO QUE LOGIN) ==================== */
.btn-register[b-2de12zfzrh] {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #FF6B00, #E65100);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    margin-top: 1rem;
}

    .btn-register:hover:not(:disabled)[b-2de12zfzrh] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
    }

    .btn-register:active:not(:disabled)[b-2de12zfzrh] {
        transform: translateY(0);
    }

    .btn-register:disabled[b-2de12zfzrh] {
        opacity: 0.7;
        cursor: not-allowed;
    }

/* Spinner de carga */
.spinner[b-2de12zfzrh] {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-2de12zfzrh 0.8s linear infinite;
}

@keyframes spin-b-2de12zfzrh {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== FOOTER ==================== */
.register-footer[b-2de12zfzrh] {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

    .register-footer p[b-2de12zfzrh] {
        margin: 0 0 0.75rem 0;
        font-size: 0.9rem;
        color: #6B7280;
    }

.link-login[b-2de12zfzrh] {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 600;
}

    .link-login:hover[b-2de12zfzrh] {
        text-decoration: underline;
    }

.copyright[b-2de12zfzrh] {
    font-size: 0.75rem !important;
    color: #9CA3AF !important;
}

/* ==================== ALERTAS ==================== */
.alert[b-2de12zfzrh] {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-danger[b-2de12zfzrh] {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.alert-success[b-2de12zfzrh] {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
    .register-body[b-2de12zfzrh] {
        padding: 1.5rem;
    }

    .register-header-banner[b-2de12zfzrh] {
        padding: 1.5rem 1.5rem 1rem;
    }

    .logo-image[b-2de12zfzrh] {
        height: 50px;
    }

    .app-title[b-2de12zfzrh] {
        font-size: 1.25rem;
    }
}
/* /Pages/Usuarios.razor.rz.scp.css */
.page-container[b-k0z72a4a3t] {
    padding: 2rem;
    width: 100%;
}

.page-header[b-k0z72a4a3t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title[b-k0z72a4a3t] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
}

.page-subtitle[b-k0z72a4a3t] {
    margin: 0;
    font-size: 1rem;
    color: #6B7280;
}

.dashboard-actions[b-k0z72a4a3t] {
    display: flex;
    gap: 0.75rem;
}

.btn-primary[b-k0z72a4a3t] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF6B00, #E65100);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

    .btn-primary:hover:not(:disabled)[b-k0z72a4a3t] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
    }

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

.btn-secondary[b-k0z72a4a3t] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1F2937;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-secondary:hover:not(:disabled)[b-k0z72a4a3t] {
        background: #F9FAFB;
        border-color: #D1D5DB;
    }

.stats-grid[b-k0z72a4a3t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-k0z72a4a3t] {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

    .stat-card:hover[b-k0z72a4a3t] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.stat-body[b-k0z72a4a3t] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon[b-k0z72a4a3t] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon-blue[b-k0z72a4a3t] {
    background: #DBEAFE;
}

.stat-icon-green[b-k0z72a4a3t] {
    background: #D1FAE5;
}

.stat-icon-red[b-k0z72a4a3t] {
    background: #FEE2E2;
}

.stat-value[b-k0z72a4a3t] {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
}

.stat-label[b-k0z72a4a3t] {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

.alert-info[b-k0z72a4a3t] {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #93C5FD;
}

.tabs-container[b-k0z72a4a3t] {
    background: white;
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tabs[b-k0z72a4a3t] {
    display: flex;
    gap: 0.25rem;
}

.tab[b-k0z72a4a3t] {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .tab:hover[b-k0z72a4a3t] {
        background: #F3F4F6;
        color: #1F2937;
    }

    .tab.active[b-k0z72a4a3t] {
        background: #FF6B00;
        color: white;
    }

.table-container[b-k0z72a4a3t] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    /* ✅ NUEVO: Altura mínima para que el LoadingSpinner tenga espacio */
    min-height: 200px;
}

.data-table[b-k0z72a4a3t] {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th[b-k0z72a4a3t] {
        text-align: left;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #E5E7EB;
    }

    .data-table td[b-k0z72a4a3t] {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #F3F4F6;
        font-size: 0.9rem;
    }

    .data-table tbody tr:hover[b-k0z72a4a3t] {
        background: #F9FAFB;
    }

    .data-table tbody tr.row-inactive[b-k0z72a4a3t] {
        opacity: 0.6;
    }

.status-badge[b-k0z72a4a3t] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active[b-k0z72a4a3t] {
    background: #D1FAE5;
    color: #065F46;
}

.status-inactive[b-k0z72a4a3t] {
    background: #E5E7EB;
    color: #374151;
}

.role-superadmin[b-k0z72a4a3t] {
    background: #7C3AED;
    color: white;
}

.role-admintecnico[b-k0z72a4a3t] {
    background: #2563EB;
    color: white;
}

.role-admin[b-k0z72a4a3t] {
    background: #059669;
    color: white;
}

.role-usuario[b-k0z72a4a3t] {
    background: #6B7280;
    color: white;
}

.action-buttons[b-k0z72a4a3t] {
    display: flex;
    gap: 0.25rem;
}

.btn-icon-action[b-k0z72a4a3t] {
    background: none;
    border: none;
    padding: 0.375rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-k0z72a4a3t] {
    background: rgba(255, 107, 0, 0.1);
}

.btn-delete:hover[b-k0z72a4a3t] {
    background: rgba(220, 38, 38, 0.1);
}

.btn-approve:hover[b-k0z72a4a3t] {
    background: rgba(5, 150, 105, 0.1);
}

.empty-state[b-k0z72a4a3t] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6B7280;
}

.empty-icon[b-k0z72a4a3t] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-overlay[b-k0z72a4a3t] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn-b-k0z72a4a3t 0.2s ease;
}

@keyframes fadeIn-b-k0z72a4a3t {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content[b-k0z72a4a3t] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-k0z72a4a3t 0.3s ease;
}

.modal-large[b-k0z72a4a3t] {
    max-width: 800px;
}

.modal-small[b-k0z72a4a3t] {
    max-width: 400px;
}

@keyframes slideUp-b-k0z72a4a3t {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

.modal-header[b-k0z72a4a3t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

    .modal-header h2[b-k0z72a4a3t] {
        margin: 0;
        font-size: 1.5rem;
        color: #1F2937;
    }

.modal-close[b-k0z72a4a3t] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

    .modal-close:hover[b-k0z72a4a3t] {
        background: #F3F4F6;
    }

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

.modal-footer[b-k0z72a4a3t] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.form-row[b-k0z72a4a3t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .form-row .form-group[b-k0z72a4a3t] {
        margin-bottom: 0;
    }

.checkbox-label[b-k0z72a4a3t] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
}

    .checkbox-label input[type="checkbox"][b-k0z72a4a3t] {
        width: 18px;
        height: 18px;
    }

.spinner-small[b-k0z72a4a3t] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-k0z72a4a3t 0.8s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

.btn-secondary .spinner-small[b-k0z72a4a3t] {
    /* ✅ NUEVO: Spinner pequeño dentro de botón secundario usa colores oscuros */
    border: 2px solid rgba(31, 41, 55, 0.2);
    border-top-color: #FF6B00;
}

.btn-danger[b-k0z72a4a3t] {
    padding: 0.75rem 1.5rem;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-danger:hover:not(:disabled)[b-k0z72a4a3t] {
        background: #B91C1C;
    }

.text-muted[b-k0z72a4a3t] {
    color: #6B7280;
}

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

    .page-header[b-k0z72a4a3t] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row[b-k0z72a4a3t] {
        grid-template-columns: 1fr;
    }
}

@keyframes spin-b-k0z72a4a3t {
    to {
        transform: rotate(360deg);
    }
}
/* /Shared/EmptyLayout.razor.rz.scp.css */
/*EmptyLayout.razor.css*/
.empty-layout[b-gre6u7bt23] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column; /* ✅ CAMBIO: Apilar verticalmente en lugar de horizontal */
    justify-content: center;
    align-items: center;
    background-color: #FFF8F0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

    /* ✅ Asegurar que solo un componente sea visible a la vez */
    .empty-layout > *[b-gre6u7bt23] {
        width: 100%;
        height: 100%;
        min-height: 100vh;
    }
/* /Shared/LoadingSpinner.razor.rz.scp.css */
.loading-7k[b-xaotnpphjg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

/* ==================== LOGO 7K ANIMADO ==================== */
.logo-7k-container[b-xaotnpphjg] {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    animation: containerFloat-b-xaotnpphjg 3s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-10px);
    }
}

/* Anillos giratorios */
.logo-ring[b-xaotnpphjg] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #FF6B00;
    border-radius: 50%;
    animation: spin-b-xaotnpphjg 2s linear infinite;
}

.ring-2[b-xaotnpphjg] {
    width: 120%;
    height: 120%;
    border-top-color: #FF9F43;
    animation-duration: 3s;
    animation-direction: reverse;
}

.ring-3[b-xaotnpphjg] {
    width: 140%;
    height: 140%;
    border-top-color: #FFB86C;
    animation-duration: 4s;
}

@keyframes spin-b-xaotnpphjg {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Letras 7K */
.logo-7k[b-xaotnpphjg] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    z-index: 10;
}

.letter-7[b-xaotnpphjg],
.letter-k[b-xaotnpphjg] {
    font-size: 3rem;
    font-weight: 900;
    color: #FF6B00;
    text-shadow: 2px 2px 0 #FF9F43, 4px 4px 0 rgba(255, 107, 0, 0.3), 0 0 20px rgba(255, 107, 0, 0.6);
    animation: letterGlow-b-xaotnpphjg 2s ease-in-out infinite;
    display: inline-block;
}

.letter-7[b-xaotnpphjg] {
    animation: letter7Bounce-b-xaotnpphjg 1s ease-in-out infinite;
}

.letter-k[b-xaotnpphjg] {
    animation: letterkBounce-b-xaotnpphjg 1s ease-in-out infinite 0.5s;
}

@keyframes letterGlow-b-xaotnpphjg {
    0%, 100% {
        text-shadow: 2px 2px 0 #FF9F43, 4px 4px 0 rgba(255, 107, 0, 0.3), 0 0 20px rgba(255, 107, 0, 0.6);
        transform: scale(1);
    }

    50% {
        text-shadow: 2px 2px 0 #FF9F43, 4px 4px 0 rgba(255, 107, 0, 0.3), 0 0 40px rgba(255, 107, 0, 1);
        transform: scale(1.05);
    }
}

@keyframes letter7Bounce-b-xaotnpphjg {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-8px) rotate(0deg);
    }
}

@keyframes letterkBounce-b-xaotnpphjg {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-8px) rotate(0deg);
    }
}

/* Mensaje */
.loading-message[b-xaotnpphjg] {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
    font-weight: 500;
}
/* /Shared/MainLayout.razor.rz.scp.css */
/* ==================== CONTENEDOR PRINCIPAL ==================== */
.app-container[b-zp1czfzexa] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* ==================== TOP BAR ==================== */
.top-bar[b-zp1czfzexa] {
    background: #1A1A2E;
    height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    position: sticky;
    top: 0;
}

.top-bar-left[b-zp1czfzexa] {
    display: flex;
    align-items: center;
    height: 100%;
}

.company-logo[b-zp1czfzexa] {
    height: 80%;
    width: auto;
    object-fit: contain;
    display: block;
}

.top-bar-right[b-zp1czfzexa] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-email[b-zp1czfzexa] {
    font-size: 0.9rem;
    color: #A0A0A0;
    font-weight: 500;
}

.btn-logout-top[b-zp1czfzexa] {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0A0A0;
    transition: all 0.2s ease;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(220, 38, 38, 0.2);
}

    .btn-logout-top:hover[b-zp1czfzexa] {
        background: rgba(220, 38, 38, 0.2);
        color: #DC2626;
    }

    .btn-logout-top:active[b-zp1czfzexa] {
        transform: scale(0.95);
    }

.logout-icon[b-zp1czfzexa] {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* ==================== APP BODY ==================== */
.app-body[b-zp1czfzexa] {
    display: flex;
    flex: 1;
}

/* ==================== SIDEBAR (Desktop) ==================== */
.sidebar[b-zp1czfzexa] {
    width: 64px;
    min-width: 64px;
    background: #1A1A2E;
    overflow-y: auto;
    overflow-x: hidden;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    z-index: 100;
}

/* ==================== MAIN CONTENT ==================== */
.main-content[b-zp1czfzexa] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.content[b-zp1czfzexa] {
    padding: 2rem;
    background-color: #FFF8F0;
    min-height: 100%;
}

/* ==================== BOTTOM NAV (Móvil) ==================== */
.bottom-nav[b-zp1czfzexa] {
    display: none; /* Oculto por defecto */
}

/* ====================================================================
   RESPONSIVE: DESKTOP
   ==================================================================== */
@media (min-width: 768px) {
    .desktop-only[b-zp1czfzexa] {
        display: block !important;
    }

    .mobile-only[b-zp1czfzexa] {
        display: none !important;
    }
}

/* ====================================================================
   RESPONSIVE: MÓVIL
   ==================================================================== */
@media (max-width: 767px) {
    .desktop-only[b-zp1czfzexa] {
        display: none !important;
    }

    .mobile-only[b-zp1czfzexa] {
        display: block !important;
    }

    .top-bar[b-zp1czfzexa] {
        height: 56px;
        min-height: 56px;
        padding: 0 1rem;
    }

    .company-logo[b-zp1czfzexa] {
        height: 70%;
    }

    .user-email[b-zp1czfzexa] {
        display: none;
    }

    /* Bottom Nav FIJO en la parte inferior */
    .bottom-nav[b-zp1czfzexa] {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 70px !important;
        min-height: 70px !important;
        z-index: 9999 !important;
        background: #1A1A2E !important;
        border-top: 2px solid rgba(255, 107, 0, 0.5) !important;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5) !important;
        padding-bottom: env(safe-area-inset-bottom, 0) !important;
        overflow: hidden !important;
    }

    /* Espacio para que el contenido no quede tapado */
    .main-content[b-zp1czfzexa] {
        padding-bottom: 80px !important;
    }

    .content[b-zp1czfzexa] {
        padding: 1rem;
        min-height: calc(100vh - 56px);
    }
}

/* ==================== SCROLLBAR (Solo Desktop) ==================== */
@media (min-width: 768px) {
    .sidebar[b-zp1czfzexa]::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar[b-zp1czfzexa]::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar[b-zp1czfzexa]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
    }

        .sidebar[b-zp1czfzexa]::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 107, 0, 0.5);
        }
}
/* /Shared/NavMenu.razor.rz.scp.css */
/*NavMenu.razor.css*/
/* ==================== BASE ==================== */
.nav-menu[b-jdf14yrv19] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.5rem;
}

.nav-list[b-jdf14yrv19] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    width: 100%;
}

.nav-item[b-jdf14yrv19] {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ==================== NAV LINK ==================== */
.nav-link[b-jdf14yrv19] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    background: transparent;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 107, 0, 0.2);
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    color: #E5E7EB !important;
}

    .nav-link:hover[b-jdf14yrv19],
    .nav-link.active[b-jdf14yrv19] {
        background: #FF6B00 !important;
        color: #FFFFFF !important;
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.5);
    }

    .nav-link:active[b-jdf14yrv19] {
        transform: scale(0.95);
        transition: all 0.1s ease;
    }

/* ==================== ICONOS SVG ==================== */
.nav-icon[b-jdf14yrv19] {
    width: 24px;
    height: 24px;
    stroke: #E5E7EB !important;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
    pointer-events: none;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-link:hover .nav-icon[b-jdf14yrv19],
.nav-link.active .nav-icon[b-jdf14yrv19] {
    stroke: #FFFFFF !important;
}

/* ==================== ETIQUETA DE TEXTO ==================== */
.nav-label[b-jdf14yrv19] {
    display: none;
}

/* ====================================================================
   DESKTOP: Sidebar vertical con tooltips
   ==================================================================== */
@media (min-width: 768px) {
    .nav-link[b-jdf14yrv19]::before {
        content: attr(title);
        position: absolute;
        left: calc(100% + 12px);
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        font-size: 0.85rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 1000;
    }

    .nav-link:hover[b-jdf14yrv19]::before {
        opacity: 1;
        transform: translateY(-50%) translateX(4px);
    }
}

/* ====================================================================
   MÓVIL: Bottom nav con scroll horizontal (máximo 5 visibles)
   ==================================================================== */
@media (max-width: 767px) {
    .nav-menu[b-jdf14yrv19] {
        padding: 0;
        height: 100%;
        overflow: hidden;
    }

    .nav-list[b-jdf14yrv19] {
        /* Horizontal con scroll */
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0 0.5rem;
        /* Ocultar scrollbar pero mantener funcionalidad */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        /* Snap scrolling para mejor UX */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

        /* Ocultar scrollbar en Chrome/Safari */
        .nav-list[b-jdf14yrv19]::-webkit-scrollbar {
            display: none;
        }

    /* ✅ CONTENEDOR DEL ÍTEM: Centrado absoluto */
    .nav-item[b-jdf14yrv19] {
        /* Ancho fijo: 20% del viewport para mostrar exactamente 5 */
        flex: 0 0 20%;
        min-width: 72px;
        max-width: 80px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        /* Snap alignment */
        scroll-snap-align: start;
    }

    /* ✅ ENLACE: Ocupa TODO el espacio del ítem */
    .nav-link[b-jdf14yrv19] {
        /* Centrado perfecto con flexbox */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        gap: 6px;
        padding: 6px 4px;
        border-radius: 8px;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
    }

    /* ✅ ICONO SVG: Centrado forzado con margin auto */
    .nav-icon[b-jdf14yrv19] {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
        /* CRÍTICO: Centra horizontalmente */
        margin: 0 auto !important;
        padding: 0 !important;
        display: block !important;
        align-self: center;
    }

    /* ✅ TEXTO: Centrado forzado */
    .nav-label[b-jdf14yrv19] {
        display: block !important;
        color: #E5E7EB !important;
        font-size: 10px;
        font-weight: 500;
        /* CRÍTICO: Centra el texto */
        text-align: center !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        line-height: 1.2 !important;
        /* CRÍTICO: Centra horizontalmente */
        margin: 0 auto !important;
        padding: 0 !important;
        align-self: center;
        /* CRÍTICO: Ocupa todo el ancho para que text-align funcione */
        width: 100%;
    }

    .nav-link.active .nav-label[b-jdf14yrv19] {
        color: #FFFFFF !important;
        font-weight: 600;
    }

    .nav-link:active[b-jdf14yrv19] {
        transform: scale(0.9);
        background: rgba(255, 107, 0, 0.3) !important;
    }

    .nav-link.active:active[b-jdf14yrv19] {
        background: #FF6B00 !important;
    }

    .nav-link[b-jdf14yrv19]::before {
        display: none;
    }
}

/* ==================== DISPOSITIVOS TÁCTILES ==================== */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover[b-jdf14yrv19] {
        background: transparent !important;
        color: #E5E7EB !important;
    }

        .nav-link:hover .nav-icon[b-jdf14yrv19] {
            stroke: #E5E7EB !important;
        }

        .nav-link:hover .nav-label[b-jdf14yrv19] {
            color: #E5E7EB !important;
        }

    .nav-link.active:hover[b-jdf14yrv19] {
        background: #FF6B00 !important;
        color: #FFFFFF !important;
    }

        .nav-link.active:hover .nav-icon[b-jdf14yrv19] {
            stroke: #FFFFFF !important;
        }

        .nav-link.active:hover .nav-label[b-jdf14yrv19] {
            color: #FFFFFF !important;
        }
}
