svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
text.axis-label {
  font-size: 14px;
  font-weight: bold;
  fill: #333;
}
text.month-label {
  font-size: 12px;
  fill: #555;
}
line.grid-line {
  stroke: #ccc;
  stroke-width: 1;
}
line.boundary-line {
  stroke: #555;
  stroke-width: 2;
}
circle.cloudier-point {
  fill: #0000cd;
  stroke: #191970;
  stroke-width: 1.5;
}
text.cloudier-label-date {
  font-size: 12px;
  fill: #191970;
  font-weight: bold;
  text-anchor: middle;
}
text.cloudier-label-val {
  font-size: 12px;
  fill: #191970;
  text-anchor: middle;
}


.clear { fill: #99B6DD; }
.mostly_clear { fill: #B3C4DC; }
.partly_cloudy { fill: #CAD0D8; }
.mostly_cloudy { fill: #ACB0B6; }
.overcast { fill: #989CA1; }
.cloudierBand { fill: #D8DADB; }
.cloudierBandLabel{
  font-size:12px;
  fill:#191970;
  font-weight:bold;
}


.bar-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.bar-container {
  width: 100%;
  max-width:500px;
  position: relative;
  height: 30px;
  display: flex;
  border: 1px solid #ccc;
}

.category {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #333;
  font-size:12px;
}

.category:nth-child(1) { background-color: #99B6DD; }
.category:nth-child(2) { background-color: #B3C4DC; }
.category:nth-child(3) { background-color: #CAD0D8; }
.category:nth-child(4) { background-color: #ACB0B6; }
.category:nth-child(5) { background-color: #989CA1; }

.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: black;
}

.category-border-label {
  position: absolute;
  top: 30px; /* バーの下に表示 */
  transform: translateX(-50%);
  font-size: 14px;
}
