/*@import url("https://netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");*/

* {
    font-family:
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Roboto,
            Helvetica,
            Arial,
            "Apple Color Emoji",
            "Segoe UI Emoji",
            "Segoe UI Symbol",
            sans-serif;
}

.highcharts-figure {
    max-width: 1000px;
    overflow-y: auto;
    /*margin: 1em auto;*/
}

#root-play-controls {
    margin: 1em auto;
}

#life-play-controls {
    margin: 1em auto;
}

#container-life-race {
    height: 100%;
    margin: 0 auto;
    overflow-y: auto !important; /* 이 한 줄을 추가하여 세로 스크롤바를 만듭니다. */
}

#container-root-race {
    height: 100%;
    margin: 0 auto;
    overflow-y: auto !important; /* 이 한 줄을 추가하여 세로 스크롤바를 만듭니다. */
}

#life-play-button {
    margin-left: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 1px solid rgba(2, 117, 255, 1);
    border-radius: 25px;
    color: white;
    background-color: rgba(2, 117, 255, 1);
    transition: background-color 250ms;
}

#life-play-button:hover {
    background-color: rgba(2, 117, 255, 0.5);
}

#life-play-range {
    transform: translateY(2.5px);
    width: calc(100% - 90px);
    background: #f8f8f8;
}

#root-play-button {
    margin-left: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 1px solid rgba(2, 117, 255, 1);
    border-radius: 25px;
    color: white;
    background-color: rgba(2, 117, 255, 1);
    transition: background-color 250ms;
}

#root-play-button:hover {
    background-color: rgba(2, 117, 255, 0.5);
}

#root-play-range {
    transform: translateY(2.5px);
    width: calc(100% - 90px);
    background: #f8f8f8;
}

.highcharts-description {
    margin: 0.3rem 10px;
}

#life-parent-container {
    overflow-y: auto;
    max-height: 268px;
}


#root-parent-container {
    overflow-y: auto;
    max-height: 268px;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #141414;
        color: #ffffff;
    }
}
