/* =================================== */
/* --- ESTILOS PARA CONSOLA DE SOPORTE --- */
/* =================================== */

.support-console {
  display: flex;
  height: 100vh;
  background-color: #0A192F;
}

.support-sidebar {
  width: 350px;
  flex-shrink: 0;
  background-color: #0f172a;
  border-right: 1px solid #1e293b;
  display: flex;
  flex-direction: column;
}

.support-sidebar h2 {
  color: #ffffff;
}

.support-user-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #1e293b;
  transition: background-color 0.2s;
}

.support-user-item:hover {
  background-color: #1e293b;
}

.support-main-content {
  flex-grow: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#request-access-modal .modal-content-lg {
    background-color: #1e293b;
    border-color: #334155;
}

#request-access-modal h3, #request-access-modal p {
    color: #cbd5e1;
}

#access-code-display {
    background-color: #0f172a;
    border-color: #334155;
    color: #00d1ff;
}

/* support-styles.css */

/* Estilos para la navegación de Super Admin */
.sa-nav-link {
    color: #94a3b8;
    transition: all 0.2s ease-in-out;
}
.sa-nav-link:hover {
    background-color: #1e293b;
    color: #ffffff;
}
.sa-nav-link.active {
    background-color: #0ea5e9; /* Cyan-500 */
    color: #ffffff;
    font-weight: 600;
}

/* Ocultar pestañas no activas */
.sa-tab {
    display: none;
}
.sa-tab.active {
    display: block;
    animation: fadeIn 0.5s; /* Reutiliza tu animación fadeIn */
}

/* Estilos para las tarjetas de métricas (KPI) */
.kpi-card {
    background-color: #0f172a; /* slate-900 */
    border: 1px solid #1e293b; /* slate-800 */
    border-radius: 0.5rem;
    padding: 1.5rem;
}
.kpi-card p {
    color: #94a3b8; /* slate-400 */
    font-size: 0.875rem;
}
.kpi-card h2 {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
}

/* Estilos para las tablas y tarjetas de contenido */
.bg-card {
    background-color: #0f172a;
    border: 1px solid #1e293b;
}
.th-cell {
    padding: 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}
.btn-primary {
    background-color: #0ea5e9;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}
.btn-primary:hover {
    background-color: #0284c7; /* sky-600 */
}