/* --- DISEÑO MODERNO CON SOMBRAS Y BORDES --- */
.mnm-layout-wrapper {
    display: flex;
    gap: 35px;
    margin: 40px 0;
    align-items: flex-start;
}

/* SIDEBAR ESTILO CARD */
.mnm-sidebar-box {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Sombra moderna */
}

.mnm-sidebar-title {
    background: #fcfcfc;
    padding: 20px;
    margin: 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 800; /* Texto bien marcado */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mnm-sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mnm-sidebar-menu li a {
    display: block;
    padding: 15px 20px;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600; /* Negrita para legibilidad */
    transition: all 0.3s ease;
    border-left: 5px solid transparent; /* Franja invisible por defecto */
    border-bottom: 1px solid #f8f8f8;
}

/* ESTADO ACTIVO CON FRANJA LATERAL */
.mnm-sidebar-menu li.active a {
    background: #f0f7ff; /* Fondo muy suave azul */
    color: var(--mnm-main, #00548b);
    border-left: 5px solid var(--mnm-main, #00548b); /* La franja del sitio de referencia */
    font-weight: 800;
}

.mnm-sidebar-menu li a:hover {
    background: #f9f9f9;
    padding-left: 25px;
}

/* ACORDEONES ESTILO MODERNO */
.mnm-main-accordion-container {
    border: none;
    background: transparent;
}

.mnm-accordion-item {
    background: #fff;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.mnm-header-style, .mnm-header-style-doc {
    padding: 20px;
    font-weight: 700; /* Negrita en títulos */
    font-size: 16px;
    color: #222;
    background: #fff !important;
    transition: all 0.3s;
}

.mnm-accordion-item.active > .mnm-header-style {
    background: var(--mnm-main, #00548b) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0,84,139,0.3);
}

.mnm-accordion-content {
    padding: 25px;
    background: #fdfdfd;
}

/* FILAS DE DOCUMENTOS */
.mnm-file-row {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.mnm-file-name {
    font-weight: 700;
    color: #333;
}

.mnm-btn-download {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .mnm-layout-wrapper { flex-direction: column; }
    .mnm-sidebar { width: 100%; }
}