
body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        #sidebar {
            min-width: 250px;
            max-width: 250px;
            min-height: 100vh;
            transition: all 0.3s;
        }
        .wrapper {
            display: flex;
            width: 100%;
            align-items: stretch;
        }
        #content {
            width: 100%;
            padding: 20px;
        }
        /* Ajuste para que el menú ocupe todo el alto y empuje las acciones al fondo */
        .sidebar-sticky {
            display: flex;
            flex-direction: column;
            height: 100%;
        }