/* ================= GLOBAL ================= */

html, body, #_dash-app-content {
    height: 100%;
    margin: 0;
    background-color: #1A1B1E;
}

body {
    overflow-x: hidden;
}

/* ================= MAIN LAYOUT ================= */

#main-container {
    color: white;
    height: 100vh;
    /*display: flex;
    flex-direction: column;*/
    /*padding: 20px;*/
}

/* MOBILE */
@media (max-width: 768px) {
    #main-container {
        flex-direction: column !important;
    }

    #control-panel {
        width: 100% !important;
        max-width: 100% !important;
    }

    #graph {
        width: 100% !important;
    }
}


