.study-hours-container {
    text-align: center;
    margin: 20px 0;
}
.adjusted-estimated-time {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1E73BE;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}
.study-hours-remaining-text {
    font-size: 0px;
    margin-bottom: 0px;
}
.study-hours-bar-container {
    width: 100%;
    height: 30px;
    background-color: #e2e7ed;
    border: 0px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.study-hours-bar {
    height: 100%;
    width: 100%;
    background-color: #1E73BE;
    transition: width 0.5s, background-color 0.5s;
}
.study-hours-value {
    font-size: 18px;
    margin-top: 10px;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}
