/* Archivo: public/mod_assets/users/style.css */
/* Punto de integración: Sobrescribir por completo. Consolida EP-01, EP-05, EP-07, EP-09 y EP-12. */

/* ==========================================================================
   1. ESTRUCTURAS DE LAYOUT Y GRILLAS (MOBILE FIRST)
   ========================================================================== */

.iam-profile-view, .iam-admin-view, .iam-auth-view {
    background-color: var(--cheisca-smoke);
    min-height: 100vh;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wide-box { 
    width: 100%; 
    max-width: 900px; 
    margin: 0 auto; 
}

/* Grilla de Formularios (Registro/Admin) */
.social-login-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* ==========================================================================
   2. COMPONENTES DE SESIÓN (HU-045, HU-046, HU-047)
   ========================================================================== */

.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.session-card {
    background-color: var(--cheisca-white);
    border: 1px solid var(--cheisca-border);
    border-radius: var(--radius-card, 20px);
    padding: 24px;
    display: flex;
    flex-direction: column; /* Apilado en móvil */
    gap: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.session-card.current-session {
    border: 1.5px solid var(--cheisca-blue);
    background-color: rgba(59, 130, 246, 0.01);
}

.session-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.device-icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: var(--cheisca-smoke);
    color: var(--cheisca-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid var(--cheisca-border);
}

.session-details h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--cheisca-black);
}

.session-meta {
    font-size: 0.85rem;
    color: var(--cheisca-black);
    opacity: 0.6;
    line-height: 1.4;
}

.btn-revoke-session {
    width: 100%; /* Botón ancho en móvil */
}

/* ==========================================================================
   3. TABLAS Y MATRIZ (RBAC / ADMIN)
   ========================================================================== */

.table-container {
    overflow-x: auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--cheisca-border);
    background-color: var(--cheisca-white);
    box-shadow: var(--shadow-soft);
}

.table-premium {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table-premium th {
    padding: 16px;
    background-color: var(--cheisca-smoke);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    border-bottom: 1px solid var(--cheisca-border);
}

.table-premium td {
    padding: 16px;
    border-bottom: 1px solid var(--cheisca-border);
    font-size: 0.9rem;
}

/* ==========================================================================
   4. UI KIT: BOTONES Y BADGES
   ========================================================================== */

.btn-danger-outline {
    background: transparent;
    color: var(--cheisca-danger);
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger-outline:hover {
    background-color: rgba(239, 68, 68, 0.05);
    border-color: var(--cheisca-danger);
}

.badge {
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--cheisca-success); border: 1px solid rgba(16, 185, 129, 0.2); }

/* ==========================================================================
   5. COMPONENTES ESPECIALES (AUDITORÍA / PWA)
   ========================================================================== */

.upload-zone {
    border: 2px dashed var(--cheisca-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    background-color: var(--cheisca-white);
    cursor: pointer;
}

.upload-zone:hover { border-color: var(--cheisca-blue); background-color: var(--cheisca-smoke); }

.impersonation-banner-wrapper {
    position: sticky; top: 0; z-index: 10000;
    height: 50px; background-color: #FFD54F; color: #000;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   6. ADAPTACIONES TABLET Y DESKTOP
   ========================================================================== */

@media (min-width: 769px) {
    .iam-profile-view, .iam-admin-view { padding: 48px 32px; }
    
    .social-login-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    
    .session-card {
        flex-direction: row; /* Tarjetas horizontales en PC */
        justify-content: space-between;
        align-items: center;
        padding: 28px;
    }

    .btn-revoke-session {
        width: auto; /* Botones con tamaño de contenido */
    }

    .table-premium th, .table-premium td { padding: 20px 24px; }
}