#day-progress-container {
    width: 100%;
    height: 50px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

#day-progress {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.block {
    flex: 1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin: 2px;
    border-radius: 5px;
    padding: 0 5px;
}

#current-time-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: red;
}
