/* styles.css */



#timeRangeContainer {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    margin-bottom: 20px;
}

.time-range-item {
    margin: 5px 0;
    padding: 10px;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

#ganttChartContainer {
    width: 100%;
    height: 100%;
    margin: 50px auto;
}

#ganttComponent {
    position: absolute;
    top: 40px;
    left: 10px;
    width: 1200px;
    height: 200px;
}

#timer {
    position: absolute;
    top: -20px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
#timerShow {
    border: 1px solid #ccc;
    padding: 2px;
    margin-bottom: 4px;
    width: 100px;
    float: left;
}
#controls{
    width: 100px;
    float: left;
    margin: 0 10px;
}

#movingIcon {
    position: absolute;
    width: 3px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    z-index: 500;
}