html, body {
    height: 100%;
    margin: 0;
    background-color: #222222;
    color: white;
    font-family: Arial, sans-serif;
}

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

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

#controls {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-group label {
    color: white !important;
    font-size: 16px;
    margin-right: 15px;
}

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

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

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

/* ===== SLIDERS ===== */

/*#controls .rc-slider {
    width: 100% !important;
}

.rc-slider-mark-text {
    color: white !important;
    font-size: 13px !important;
}

.rc-slider-rail {
    background-color: #666 !important;
    height: 6px !important;
}

.rc-slider-track {
    background-color: cyan !important;
    height: 6px !important;
}

.rc-slider-handle {
    border: solid 2px cyan !important;
    background-color: black !important;
    width: 16px !important;
    height: 16px !important;
    margin-top: -5px !important;
}*/

/* ===== SLIDER TICKS FULL FIX ===== */

/*.rc-slider-mark {
    margin-top: 10px !important;
}

.rc-slider-mark-text {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.rc-slider-dot {
    border: 2px solid #ffffff !important;
    background-color: #ffffff !important;
    width: 6px !important;
    height: 6px !important;
}

.rc-slider-dot-active {
    border-color: cyan !important;
    background-color: cyan !important;
}*/

#graph-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#graph {
    flex: 1;
}

button {
    padding: 8px;
    background-color: #444;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #666;
}

/* ===== FORCE SLIDER MARKS VISIBILITY ===== */

/*.rc-slider-mark-text {
    color: white !important;
    opacity: 1 !important;
    z-index: 1000 !important;
}

.rc-slider-mark {
    z-index: 1000 !important;
    position: relative !important;
}

.rc-slider-dot {
    border: 2px solid white !important;
    background: white !important;
    opacity: 1 !important;
}

.rc-slider {
    overflow: visible !important;
}*/

/* ===== ABSOLUTE OVERRIDE SLIDER COLORS ===== */

#controls .rc-slider-mark-text {
    color: white !important;
    opacity: 1 !important;
}

#controls .rc-slider-dot {
    border-color: white !important;
    background-color: white !important;
}

#controls .rc-slider-rail {
    background-color: #888 !important;
}

#controls .rc-slider-track {
    background-color: cyan !important;
}

