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

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

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

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

#content-container {
    flex: 1;
    display: flex;
    gap: 40px;
}

.modebar-btn {
    font-size: 22px !important;
}
.modebar {
    transform: scale(1.3);
}
.modebar-btn path {
    fill: white !important;
}
.modebar {
    background-color: gray !important;
}
.modebar-btn.active path {
    fill: #ffd43b !important;
}

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

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

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

