.gantt-chart {
  margin: 30px 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px 20px;
  border-radius: 8px;
}

.gantt-chart p {
  font-weight: bold;
  margin-bottom: 15px;
}

.gantt-row {
  position: relative;
  margin: 15px 0;
  height: 24px;
  background: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #eee;
}

.gantt-row span {
  position: absolute;
  left: 8px;
  top: 2px;
  font-size: 14px;
  z-index: 2;
  color: #333;
}

.bar {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #4CAF50;
  border-radius: 4px;
  z-index: 1;
  opacity: 0.85;
}

