 /* Contenedor principal */
        .app-container {
            display: flex;
            min-height: 100vh;
            position: relative;
        }

        /* Componente Sidebar aislado */
        .sidebar-component {
            width: 100%;
            background: #ffffff;
            border-right: 1px solid #e9ecef;
            transition: transform 0.3s ease;
            position: relative;
            /*z-index: 1000;*/
        }

        .sidebar-component.hidden {
            transform: translateX(-100%);
        }

        /* Header del sidebar */
        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid #e9ecef;
            background: #f8f9fa;
        }

        .sidebar-title {
            font-size: 18px;
            font-weight: 600;
            color: #495057;
        }

        /* Contenedor de acordeones */
        .accordion-container {
            padding: 0;
        }

        /* Acordeón individual */
        .accordion-item {
            border: 0px!important;
            border-bottom: 1px solid #e9ecef!important;
        }

        .accordion-header {
            padding: 16px 20px;
            background: #ffffff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.2s ease;
            user-select: none;
        }

        .accordion-header:hover {
            background-color: #f8f9fa;
        }

        .accordion-title {
            font-weight: 500;
            font-size: 14px;
            color: #495057;
        }

        .accordion-icon {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
            color: #6c757d;
        }

        .accordion-icon.rotated {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #ffffff;
        }

        .accordion-content.expanded {
            max-height: 500px;
        }

        .accordion-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .accordion-list-item {
            padding: 12px 40px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            border-left: 3px solid transparent;
            font-size: 13px;
            color: #6c757d;
            border-top: 1px solid #e8e8e8;
        }

        .accordion-list-item:hover {
            background-color: #f8f9fa;
            color: #495057;
        }

        .accordion-list-item.active {
            background-color: #f3e5f5;
            border-left-color: #6f42c1;
            color: #6f42c1;
            font-weight: 500;
        }

        /* Contenido principal */
        .main-content {
            flex: 1;
            padding: 20px;
            background: #ffffff;
            margin: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: margin-left 0.3s ease;
        }

        .content-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .content-title {
            font-size: 28px;
            font-weight: 600;
            color: #212529;
            margin-bottom: 8px;
        }

        .content-subtitle {
            font-size: 16px;
            color: #6c757d;
        }

        .content-body {
            font-size: 15px;
            line-height: 1.7;
            color: #495057;
        }

        /* Botón hamburguesa */
        .menu-toggle {
            display: none;
            position: fixed;
            top: 58px;
            left: 20px;
            z-index: 1001;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,123,255,0.3);
            transition: all 0.2s ease;
        }

        .menu-toggle:hover {
            background: #0056b3;
            transform: translateY(-1px);
        }

        .menu-toggle-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Overlay para móvil */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sidebar-component {
                position: fixed;
                top: 0;
                left: 0;
                height: 100vh;
                z-index: 1000;
                box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            }

            .menu-toggle {
                display: block;
            }

            .main-content {
                margin: 20px;
                margin-left: 20px;
            }

            .overlay.show {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .sidebar-component {
                width: 100%;
                max-width: 280px;
            }

            .main-content {
                margin: 20px 10px;
            }

            .content-title {
                font-size: 24px;
            }
        }