/*
 * Styles para Dashboard de Cotizaciones Coffee (BARRA DESPLEGABLE Y OCULTAR TEXTO)
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');


/* --- Configuración del color de acento y fuentes --- */
:root {
    --main-green: #347500;
    --light-green: #448c10;
    --menu-width-expanded: 287px; /* 15% más ancho */
    --menu-width-collapsed: 50px; /* Ancho colapsado: 50px */
    --content-padding-air: 10px; /* Padding del contenedor principal (aire alrededor del recuadro) */
    --content-padding-inner: 30px; /* Padding interno de la sección */
    --font-primary: 'Montserrat', 'Roboto', sans-serif;
    --border-color: #e0e0e0;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- Estructura Principal y Fija --- */
.dashboard-container {
    width: 100%;
    margin: 0;
    position: relative;
    font-family: var(--font-primary);
    display: flex;
    min-height: 100vh;
    background-color: #f8f8f8;
    transition: filter 0.3s ease;
}

/* EFECTO BLUR cuando el modal está activo */
.dashboard-container.modal-active {
    filter: blur(5px);
    pointer-events: none;
}

/* Barra Lateral de Menú - ANCLADA Y DESPLEGABLE */
.dashboard-sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--menu-width-collapsed); /* 50px */
    height: 100%;
    background: var(--main-green); 
    z-index: 9999; /* Asegurar que esté por encima de todo */
    box-shadow: 4px 0 15px rgba(0,0,0,0.2);
    padding-top: 80px;
    box-sizing: border-box; 
    transition: width 0.3s ease; 
    overflow-x: hidden;
}

/* Desplegar al pasar el ratón */
.dashboard-sidebar-menu:hover {
    width: var(--menu-width-expanded); /* 287px */
}

/* Contenido Principal - El margen compensa el ancho COLAPSADO del menú */
.dashboard-main-content {
    margin-left: var(--menu-width-collapsed); /* 50px */
    flex-grow: 1;
    padding: var(--content-padding-air); 
    transition: margin-left 0.3s ease;
}

/* --- Estilos del Menú (Ajustado para vista de solo iconos) --- */
.dashboard-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, border-left 0.3s ease;
    padding: 15px 10px; /* Reducido para colapsado */
    border-bottom: none;
    border-left: 5px solid transparent;
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: left;
    height: auto;
    justify-content: flex-start;
    white-space: nowrap; 
}

/* Texto del menú */
.dashboard-menu li span {
    opacity: 0; /* CRÍTICO: Ocultar el texto por defecto */
    transition: opacity 0.1s ease-in;
    margin-left: 15px; /* Separación inicial del icono */
    flex-grow: 1;
}

/* Mostrar el texto solo al hacer hover en el sidebar */
.dashboard-sidebar-menu:hover li span {
    opacity: 1;
    transition: opacity 0.2s ease-in 0.2s; /* Pequeño retraso para que aparezca después del despliegue */
}

/* Icono del menú */
.dashboard-menu li .menu-icon {
    margin-right: 0; /* Eliminar margen derecho por defecto */
    margin-bottom: 0;
    font-size: 1.1em;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

/* Ajuste del ícono al expandirse para dar espacio al texto */
.dashboard-sidebar-menu:hover li .menu-icon {
    margin-right: 15px;
}


.dashboard-menu li:hover {
    background: rgba(255,255,255,0.1);
}

.dashboard-menu li.active {
    background: var(--light-green);
    border-left: 5px solid #ffc107;
    font-weight: 600;
}
.dashboard-menu li.active .menu-icon {
    color: #fff;
}

.dashboard-menu li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.dashboard-menu li.cerrar-sesion {
    margin-top: 50px;
    background: #dc3545;
    border-left: 5px solid transparent;
}

.dashboard-menu li.cerrar-sesion:hover {
    background: #c82333;
}


/* --- ESTILOS PARA EL RECUADRO DE CONTENIDO (MAXIMIZADO) --- */

.dashboard-header-section {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header-section .header-icon {
    flex-shrink: 0;
    margin-right: 25px;
    font-size: 3.5em;
    color: var(--main-green);
    padding-right: 25px;
    border-right: 1px solid #ddd;
}

.dashboard-header-section .header-info {
    flex-grow: 1;
}

.section-title-custom { margin: 0 0 8px 0; color: #333; font-size: 2em; font-weight: 700; }
.section-description-custom { margin: 0; color: #6c757d; font-size: 1em; font-weight: 400; font-style: normal; }
.header-separator { display: none; }

.dashboard-section { 
    display: none; 
    padding: var(--content-padding-inner); 
    border: none; 
    border-radius: 12px;
    
    /* CRÍTICO: Usar 100% menos el doble del padding del contenedor principal (10px + 10px) */
    width: calc(100% - 20px) !important; 
    max-width: 100% !important; 
    
    margin: 0 auto;
    
    background: #fff;
    box-shadow: var(--shadow-light);
    box-sizing: border-box;
}
.dashboard-section.active { display: block; }

/* --- ESTILOS DEL MODAL MEJORADOS --- */
.modal {
    display: none;
    position: fixed;
    z-index: 10000; /* Por encima del sidebar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay más oscuro */
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 30px;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #999;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover,
.close:focus {
    color: #333;
}

/* Estilo para el contenido del modal */
#reporteContent {
    margin-top: 20px;
}

/* El resto de estilos de tablas, botones, etc. permanece igual */
table { width: 100%; border-collapse: collapse; table-layout: auto; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; }
table th { background-color: #f1f4f9; color: #333; font-weight: 600; text-transform: uppercase; font-size: 0.9em; }
table th, table td { padding: 12px 15px; border: 1px solid var(--border-color); text-align: left; word-break: break-word; }
.wp-list-table tbody tr:hover { background-color: #f0f8ff !important; box-shadow: none; cursor: pointer; transform: translateY(-1px); transition: background-color 0.2s ease, transform 0.2s ease; }
#cotizaciones-enviadas table { min-width: 950px; }
.button-primary { background: var(--main-green); color: #fff; padding: 10px 25px; font-weight: 600; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s ease-in-out; text-transform: uppercase; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* Estilos para los botones dentro del modal */
.btn-enviar-cotizacion,
#btnEnviarReportePDF,
#btnReenviarCotizacion {
    background: var(--main-green);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    margin-top: 10px;
}

.btn-enviar-cotizacion:hover,
#btnEnviarReportePDF:hover,
#btnReenviarCotizacion:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}