/* Módulo: Producción - Main Shared Styles */
.module-section {
    display: none;
    /* Default hidden */
}

.module-section.active {
    display: block;
}

.sub-module-section {
    display: none;
    /* Sub-modules hidden by default */
}

/* Drawer is shared */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    justify-content: flex-end;
}

.drawer-overlay.active {
    display: flex;
}

.drawer-content {
    background: #1e293b;
    height: 100%;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid #334155;
    text-align: right;
}