/* .contenedor_pruebas {
    height: 100svh;
    border: 1px solid lime;
}

*/
.card-graficas {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.control-group {
    margin-bottom: 15px;
}

.contenedor-chart {
    position: relative;
    height: 60vh;
    width: 41vw;

}


/* Dimensionamiento dinámico de la chart/gráfica */
@media (max-width: 1024px) {
    .contenedor-chart {
        position: relative;
        height: 60vh;
        width: 41vw;
    }
}

@media (max-width: 768px) {
    .contenedor-chart {
        position: relative;
        height: 60vh;
        width: 80vw;
    }
}

.dynamic-fragment-bg {
    /* Step 1: Ensure background spans each fragment edge beautifully */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;

    /* Step 2: Set your base background utilizing a dynamic CSS Variable */
    background: var(--dynamic-bg, linear-gradient(90deg, var(--color-bg), #292121));

    /* Optional: Animate the background gradient position for a live effect */
    background-size: 200% 200%;
    animation: moveGradient 4s ease infinite;

    /* Visual styling */
    padding: 0.2em 0.6em;
    border-radius: 4px;
    color: white;
}

/* Optional: Keyframes to make the background continuously dynamic */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}