/* lobby_admin.css */

/* --- CONTENEDOR PRINCIPAL DEL LOBBY --- */
.lobby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-out;
}

/* --- TARJETAS DEL MENÚ --- */
.lobby-card {
    background: linear-gradient(145deg, #2a2a2a, #222);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; /* Para posicionar el badge */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.lobby-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(51, 145, 255, 0.2); /* Resplandor azul */
    border-color: var(--primary-color);
}

/* Iconos grandes en las tarjetas */
.lobby-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.lobby-card:hover .lobby-icon {
    transform: scale(1.1);
}

.lobby-card h3 {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 1.4rem;
}

.lobby-card p {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

/* --- BADGE DE NOTIFICACIONES (Globito Rojo) --- */
.lobby-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(255, 82, 82, 0.5);
    animation: pulse-red 2s infinite;
    z-index: 2;
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 82, 82, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 82, 82, 0); }
}

/* --- TABLA DE GESTIÓN DE SOLICITUDES --- */
#admin-requests-view {
    border: 1px solid var(--warning-color); /* Borde amarillo para distinguir la zona */
}

#admin-requests-table th {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
}


/* --- Toggle Pendientes / Historial (Gestión de Solicitudes) --- */
.req-status-toggle{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

.req-status-btn{
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(229, 231, 235, 0.88);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: transform .12s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
    user-select: none;
}

.req-status-btn:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(96, 165, 250, 0.45);
    color: #fff;
}

.req-status-btn.is-active{
    color: #fff;
}

.req-status-btn.is-active[data-status="pending"]{
    background: rgba(255, 193, 7, 0.14);
    border-color: rgba(255, 193, 7, 0.75);
    box-shadow: 0 10px 22px rgba(255, 193, 7, 0.10);
}

.req-status-btn.is-active[data-status="history"]{
    background: rgba(51, 145, 255, 0.16);
    border-color: rgba(51, 145, 255, 0.70);
    box-shadow: 0 10px 22px rgba(51, 145, 255, 0.12);
}

@media (max-width: 520px){
    .req-status-btn{ height: 38px; padding: 0 12px; font-size: 0.82rem; }
}

/* Estilos para los botones de acción en la tabla de solicitudes */
.btn-resolve-edit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85em;
    margin-right: 5px;
}

.btn-approve-delete {
    background-color: var(--danger-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85em;
    margin-right: 5px;
}

.btn-reject-request {
    background-color: transparent;
    border: 1px solid #666;
    color: #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85em;
}

.btn-reject-request:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

/* --- ESTADOS VISUALES EN LAS TABLAS DE USUARIO --- */

/* Fila con solicitud pendiente (Usuario/Panelista) */
.row-pending-change {
    background-color: rgba(255, 193, 7, 0.08) !important; /* Fondo amarillo muy suave */
    border-left: 4px solid var(--warning-color) !important;
    position: relative;
}

/* Icono de relojito que aparece en la fila */
.pending-indicator {
    display: inline-block;
    margin-right: 5px;
    font-size: 1.1em;
    cursor: help;
}

/* Botón de bandera (Solicitar cambio) */
.btn-flag {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
    padding: 0 5px;
}

.btn-flag:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* --- ANIMACIÓN GENERAL --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- ANIMACIÓN DE PULSO AMARILLO PARA LA TARJETA --- */

/* Clase que activaremos con JS */
.pulse-yellow-active {
    border-color: var(--warning-color) !important; /* Borde amarillo fijo */
    animation: card-pulse-yellow 2s infinite;
    z-index: 1; /* Asegura que la sombra se vea sobre otros elementos si es necesario */
}

@keyframes card-pulse-yellow {
    0% {
        /* Sombra interior sutil y sin sombra exterior */
        box-shadow: inset 0 0 10px rgba(255, 193, 7, 0.1), 
                    0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        /* La sombra exterior se expande y se desvanece */
        box-shadow: inset 0 0 20px rgba(255, 193, 7, 0.2), 
                    0 0 0 15px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: inset 0 0 10px rgba(255, 193, 7, 0.1), 
                    0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* --- Gestión de Solicitudes: Filtros + Paginación (Historial/Pendientes) --- */
.requests-extra-controls{
    margin-top: 12px;
    padding: 12px 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.requests-filters-row{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.req-filter{
    display: grid;
    gap: 6px;
    min-width: 210px;
}

.req-filter label{
    font-size: 0.82rem;
    color: rgba(229, 231, 235, 0.75);
    margin: 0;
}

.req-filter input,
.req-filter select{
    height: 42px;
}

.requests-pagination{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

#requests-page-label{
    color: rgba(229, 231, 235, 0.85);
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
}

.btn-icon-req{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background-color: rgba(148, 163, 184, 0.06);
    color: var(--text-color);
    cursor: pointer;
    transition: transform .12s ease, background-color .15s ease, border-color .15s ease;
}
.btn-icon-req:hover{
    transform: translateY(-1px);
    background-color: rgba(148, 163, 184, 0.12);
    border-color: rgba(96, 165, 250, 0.65);
}
.btn-icon-req:active{ transform: scale(0.98); }

.req-actions-inline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px){
  .requests-extra-controls{ align-items: stretch; }
  .req-filter{ min-width: 160px; }
  .requests-pagination{ width: 100%; justify-content: center; margin-left: 0; }
}


/* Confirm modal: vista previa completa (Reabrir y editar en Historial) */
#custom-confirm-modal.cc-has-extra .modal-content { 
    max-width: 780px !important; 
}
#custom-confirm-modal.cc-has-extra #custom-confirm-message { 
    white-space: pre-line; 
    text-align: left; 
}
.custom-confirm-extra {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--border-color, rgba(255,255,255,0.12));
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    max-height: 360px;
    overflow: auto;
    text-align: left;
}

.custom-confirm-extra .cc-summary-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    font-size: 0.92em;
}

.custom-confirm-extra .cc-row { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
}

.custom-confirm-extra .cc-label {
    font-size: 0.78em;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.2px;
}

.custom-confirm-extra .cc-value {
    color: rgba(255,255,255,0.92);
    word-break: break-word;
}

.custom-confirm-extra details.cc-json { margin-top: 12px; }
.custom-confirm-extra details.cc-json > summary {
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    user-select: none;
}

.custom-confirm-extra details.cc-json pre {
    margin-top: 10px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 0.82em;
    line-height: 1.35;
    overflow: auto;
    white-space: pre;
}

/* Permitir selección del texto del motivo en el modal de detalle */
#admin-detail-modal #req-reason-text,
#req-reason-text{
    user-select: text;
    -webkit-user-select: text;
    cursor: text;
}




/* =============================================================================
   Gestión de Solicitudes (Admin Requests) - Layout 100% en CSS
   IMPORTANTE: Se eliminó el control de estilos desde lobby_admin.js.
   Ajustá acá paddings, anchos y alineaciones (pendientes vs historial).
============================================================================= */

#admin-requests-table{
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;

    /* Ajustes globales (podés tocar estos 2 y cambia toda la “distancia” entre columnas) */
    --req-cell-py: 8px;
    --req-cell-px: 10px;

    /* Anchos por columna (se setean por modo abajo) */
    --req-w-fecha: 14%;
    --req-w-solicitante: 16%;
    --req-w-tipo: 10%;
    --req-w-motivo: 18%;
    --req-w-registro: 14%;
    --req-w-personal: 14%;
    --req-w-acciones: 14%;
}

#admin-requests-table th,
#admin-requests-table td{
    padding: var(--req-cell-py) var(--req-cell-px);
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Asignación de anchos por columna (orden del HTML) */
#admin-requests-table th:nth-child(1),
#admin-requests-table td:nth-child(1){ width: var(--req-w-fecha); }

#admin-requests-table th:nth-child(2),
#admin-requests-table td:nth-child(2){ width: var(--req-w-solicitante); }

#admin-requests-table th:nth-child(3),
#admin-requests-table td:nth-child(3){ width: var(--req-w-tipo); }

#admin-requests-table th:nth-child(4),
#admin-requests-table td:nth-child(4){ width: var(--req-w-motivo); }

#admin-requests-table th:nth-child(5),
#admin-requests-table td:nth-child(5){ width: var(--req-w-registro); }

#admin-requests-table th:nth-child(6),
#admin-requests-table td:nth-child(6){ width: var(--req-w-personal); }

#admin-requests-table th:nth-child(7),
#admin-requests-table td:nth-child(7){ width: var(--req-w-acciones); }

/* Alineaciones base por columna */
#admin-requests-table th:nth-child(3),
#admin-requests-table td:nth-child(3),
#admin-requests-table th:nth-child(5),
#admin-requests-table td:nth-child(5),
#admin-requests-table th:nth-child(7),
#admin-requests-table td:nth-child(7){
    text-align: center;
}

/* ===== MODO: HISTORIAL (7 columnas) ===== */
#admin-requests-table[data-mode="history"]{
    --req-w-fecha: 14%;
    --req-w-solicitante: 16%;
    --req-w-tipo: 10%;
    --req-w-motivo: 17%;
    --req-w-registro: 14%;
    --req-w-personal: 14%;
    --req-w-acciones: 14%;
}

/* ===== MODO: PENDIENTES (oculta Motivo + Personal) ===== */
#admin-requests-table[data-mode="pending"]{
    /* Pendientes (5 columnas visibles): Fecha / Solicitante / Tipo / Registro / Acciones */
    --req-w-fecha: 7%;
    --req-w-solicitante: 7%;
    --req-w-tipo: 8%;
    --req-w-registro: 7%;
    --req-w-acciones: 6%;

    /* Distancia entre columnas (si querés más compacto en pendientes) */
    /* --req-cell-py: 8px;
       --req-cell-px: 10px; */
}

/* Ocultar columnas Motivo (4) y Personal (6) SOLO en pendientes */
#admin-requests-table[data-mode="pending"] th:nth-child(4),
#admin-requests-table[data-mode="pending"] td:nth-child(4),
#admin-requests-table[data-mode="pending"] th:nth-child(6),
#admin-requests-table[data-mode="pending"] td:nth-child(6){
    display: none;
}

/* Forzar que “Registro” en pendientes quede pegado al contenido */
#admin-requests-table[data-mode="pending"] td:nth-child(5){
    white-space: nowrap;
}

/* ===== Contenido formateado (Fecha en 2 líneas / Personal en 2 líneas) ===== */
.nd-dt-stack{
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nd-dt-date{
    font-weight: 900;
    color: #ffffff;
}
.nd-dt-time{
    color: #aaaaaa;
}

.nd-personal-2l{
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.nd-personal-top{
    font-weight: 900;
    color: #ffffff;
}
.nd-personal-bottom{
    font-size: 0.82em;
    color: #bdbdbd;
    font-weight: 800;
}

/* Tipos (EDICIÓN / ANULACIÓN) */
.nd-req-type{
    font-weight: 800;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}
.nd-req-type--annul{ color: var(--danger-color); }
.nd-req-type--edit{ color: var(--primary-color); }

.nd-req-context{ opacity: 0.8; }
.nd-req-solicitante{ font-weight: 800; color: #fff; }

/* Motivo (texto corto cuando no hay botón) */
.nd-req-reason{
    max-width: 250px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ccc;
    font-style: italic;
}

/* Acciones: alineación y separación */
.nd-req-actions{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Botón ABRIR (Pendientes) */
.nd-req-btn-open{
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: #fff;
    border: none;
    padding: 7px 16px;
    border-radius: 999px;
    min-width: 84px;
    line-height: 1;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
    text-transform: uppercase;
}
.nd-req-btn-open:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(51,145,255,0.35);
    filter: brightness(1.05);
}
.nd-req-btn-open:active{
    transform: translateY(0px) scale(0.99);
}

/* Iconos de estado (Historial) */
.nd-req-status-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-weight: 900;
    line-height: 1;
}
.nd-req-status-approved{
    background: rgba(34,197,94,0.18);
    border: 1px solid rgba(34,197,94,0.55);
    color: rgba(34,197,94,0.95);
}
.nd-req-status-rejected{
    background: rgba(239,68,68,0.16);
    border: 1px solid rgba(239,68,68,0.55);
    color: rgba(239,68,68,0.95);
}

/* Filas especiales */
.nd-req-empty,
.nd-req-connecting,
.nd-req-error{
    text-align: center;
    padding: 30px;
}
.nd-req-connecting{
    padding: 20px;
    color: #888;
}
.nd-req-empty{ color: #666; }
.nd-req-error{ color: var(--danger-color); }

/* Botón Ver Motivo (solo sin inline styles) */
.btn-view-motivo{
    padding: 6px 12px;
    font-size: 0.8em;
    font-weight: 800;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* --- Utilidades para reemplazar inline-styles movidos desde JS --- */
.nd-muted-label{ opacity: 0.75; }

.nd-modal-content-wide{ max-width: 950px; width: 95%; }
.nd-modal-content-motivo{ max-width: 900px; width: 95%; position: relative; }

.nd-modal-close-abs{
    position:absolute;
    top:12px;
    right:12px;
    background:transparent;
    border:none;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.nd-modal-title-pad{ margin-top: 0; padding-right: 34px; }

.nd-motivo-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-bottom:12px; }
.nd-grid-span-all{ grid-column: 1 / -1; }

.nd-motivo-block{ margin: 10px 0 16px 0; }
.nd-motivo-label{ color: var(--warning-color); font-weight: 900; margin-bottom: 6px; }
.nd-motivo-box{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px;
    border-radius: 12px;
    white-space: pre-wrap;
    line-height: 1.35;
}

.nd-details{ margin-top: 10px; }
.nd-summary{ cursor: pointer; font-weight: 800; }
.nd-pre-json{
    margin-top: 8px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px;
    border-radius: 12px;
    overflow: auto;
    max-height: 280px;
}
.nd-pre-json--tall{ max-height: 320px; }

.nd-success-strong{ color: var(--success-color); font-weight: bold; font-size: 1.1em; }

.nd-pad-16{ padding: 16px; }
.nd-opacity-85{ opacity: 0.85; }

.nd-modal-footer{
    margin-top: 15px;
    text-align: right;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}

.nd-inline-pill{
    padding: 4px 8px;
    font-size: 0.85em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
}

.nd-error-dashed{
    padding: 20px;
    text-align: center;
    color: var(--danger-color);
    border: 1px dashed var(--danger-color);
    border-radius: 8px;
}

.nd-mono{ font-family: monospace; letter-spacing: 1px; }
.nd-strong-white{ color:#fff; font-weight:bold; font-size:1.1em; }
.nd-uppercase{ text-transform: uppercase; }

.nd-panel-box{
    background-color: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.nd-panel-box--dark{ background-color: rgba(0,0,0,0.3); }

.nd-row-between{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:8px;
}
.nd-warning-title{ color: var(--warning-color); font-weight: bold; margin: 0; }

.nd-inline-chip{
    padding: 6px 10px;
    font-size: 0.85em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nd-selectable-text{
    color:#fff;
    font-size: 1.1em;
    line-height: 1.4;
    white-space: pre-wrap;
    user-select: text;
    -webkit-user-select: text;
    cursor: text;
}

.nd-muted-footnote{ margin-top: 20px; font-size: 0.8em; color: #666; }
.nd-text-light{ color: #e0e0e0; }
.nd-push-left{ margin-right:auto; margin-left:0; order:-1; }

/* Badges con color dinámico desde data-color (usa variable inline por JS, pero sin style="") */
.nd-dyn-color{ }
.nd-dyn-badge{
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}


.nd-type-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:2px 8px;
    border-radius:4px;
    font-size:0.8em;
    font-weight:900;
    color:#fff;
}
.nd-type-badge--danger{ background: var(--danger-color); }
.nd-type-badge--primary{ background: var(--primary-color); }

/* =============================================================================
   FIX CRÍTICO: Evitar columnas solapadas en "Gestión de Solicitudes"
   Causa típica: el JS aplica `display:flex` al TD de "Acciones" (table-layout fixed),
   lo que rompe el cálculo de anchos de la tabla y termina “solapando” columnas.
   Esta regla fuerza que el TD siga siendo una celda de tabla.
============================================================================= */

#admin-requests-table td:nth-child(7){
    display: table-cell !important;
    vertical-align: middle;
}

#admin-requests-table th:nth-child(7),
#admin-requests-table td:nth-child(7){
    min-width: 150px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

#admin-requests-table td:nth-child(7) .nd-req-actions{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

/* Asegura box sizing consistente (evita “desbordes” por padding + width %) */
#admin-requests-table,
#admin-requests-table *{
    box-sizing: border-box;
}

/* === Modal detalle de solicitudes (movido desde injectDetailModalStyles en lobby_admin.js) === */
/* CAPAS (Z-INDEX) CRÍTICAS */
/* 1. El Modal de Detalle (Fondo) */
#admin-detail-modal { z-index: 15000 !important; }

/* 2. El Modal de Motivo (Encima del detalle) */
#admin-motivo-modal { z-index: 16000 !important; }

/* 3. El Modal de Confirmación "Sí/No" (Encima del detalle) */
#custom-confirm-modal { z-index: 20000 !important; }

/* 3. El Zoom de Imagen (Encima de todo) */
#image-zoom-modal { z-index: 21000 !important; }

/* Grid de 2 Columnas para el Detalle */
.modal-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; text-align: left; font-size: 0.95em; width: 100%; }

.col-header { 
    font-size: 1.1em; font-weight: 600; 
    border-bottom: 1px solid var(--border-color); 
    padding-bottom: 8px; margin-bottom: 15px; 
    display: flex; align-items: center; gap: 8px; 
}

.req-reason-box { 
    background: rgba(255, 193, 7, 0.1); 
    border-left: 3px solid var(--warning-color); 
    padding: 15px; border-radius: 6px; margin-top: 20px; 
}

.data-point { 
    margin-bottom: 8px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding-bottom: 5px; 
    display: flex; justify-content: space-between; align-items: center; 
}

.data-point label { color: #888; font-weight: 500; font-size: 0.9em; }
.data-point span { text-align: right; color: #eee; font-weight: 500; word-break: break-all; max-width: 60%; }

/* Botonera de Decisión */
.decision-actions { 
    display: flex; justify-content: flex-end; gap: 12px; 
    margin-top: 25px; padding-top: 20px; 
    border-top: 1px solid var(--border-color); 
}

.btn-decision { 
    padding: 10px 20px; border-radius: 6px; 
    font-weight: bold; border: none; cursor: pointer; 
    transition: all 0.2s; 
}
.btn-decision:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }

.btn-reject { background-color: transparent; border: 1px solid #666; color: #ccc; }
.btn-reject:hover { background-color: rgba(255,255,255,0.1); color: white; border-color: white; }

.btn-approve-edit { background-color: var(--primary-color); color: white; }
.btn-approve-annul { background-color: var(--danger-color); color: white; }

.btn-decision-close { background-color: var(--button-bg); color: var(--text-color); }
.btn-decision-close:hover { background-color: var(--button-hover-bg); }

/* Responsive */
@media (max-width: 768px) { .modal-grid-2col { grid-template-columns: 1fr; } }

