.forecast-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    background: inherit;
    color: inherit;
    padding: 10px;
    border-radius: 6px;
    font-family: sans-serif;
    border: 1px solid #444;
    gap: 12px;
    overflow-x: auto;
  }
  
  .forecast-day {
    flex: 1 1 80px;
    text-align: center;
    padding: 6px;
    border-left: 1px solid #333;
  }
  
  .forecast-day:first-child {
    border-left: none;
  }
  
  .forecast-day .day-name {
    font-weight: bold;
    margin-bottom: 4px;
  }
  
  .forecast-day .icon {
    font-size: 1.8em;
    margin: 6px 0;
  }
  
  .forecast-day .temp {
    font-size: 0.95em;
  }
  
  .forecast-day .rain {
    font-size: 0.8em;
    color: #a0c4ff;
  }
  