.chart-container {
    height: 100%;
    width: 100%;
    border-radius: 14px;
    /* Ajusta el radio según tu gusto */
    overflow: hidden;
    /* Oculta las esquinas rectas internas */
    border: 1px solid #222;
    /* Opcional: borde sutil */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    /* Opcional: sombra */
}


body {
    height: 90vh;
    background-color: transparent !important;
}

.dark_Theme {
    background-color: #0d1117;
}

.btn_Theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn_Theme:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.btn_Theme:active {
    background-color: #e9ecef;
    border-color: #adb5bd;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn_Theme i {
    font-size: 1.1rem;
}

@media (max-width: 800px) {
    .modal-dialog-end {
        margin-left: auto;
        width: 50vw;
    }
}

@media (min-width: 800px) {
    .modal-dialog-end {
        margin-left: auto;
        width: 20vw;
    }
}

.modal-theme-black {
    background-color: #0E1218;
    color: white !important;
}

.btn-close.btn-color-theme {
    filter: invert(1);
}