/* Weather Widget Styling 
.weather-widget {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  border: 1px solid #ddd;
  padding: 15px;
  max-width: 300px;
  background-color: #f9f9f9;
}
 */

.current-weather {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.current-temp {
  font-size: 2.5em;
  font-weight: bold;
}

.current-conditions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: capitalize;
  font-size: 0.9em;
}

.current-conditions img {
  width: 50px;
  height: 50px;
}

.forecast-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.forecast-day {
  flex: 1;
  padding: 5px;
}

.forecast-day-name {
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.forecast-day img {
  width: 40px;
  height: 40px;
}

.forecast-temps {
  font-size: 0.9em;
}

.forecast-temps .high {
  font-weight: bold;
}

.forecast-temps .low {
  color: #666;
}
.weather-location-name {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

/* Add these new styles to your existing weather.css file */

.today-forecast-temps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.today-forecast-label {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 4px;
}

.today-forecast-temps .temps-wrapper {
  font-size: 2em;
  font-weight: bold;
}

/* Adjust high/low for this view if needed */
.today-forecast-temps .high {
  font-weight: bold;
}

.today-forecast-temps .low {
  color: #666;
  font-weight: normal;
}

/* Add these new styles to your existing weather.css file */

.weather-widget .wi {
  font-size: 45px; /* Adjust size as needed */
  line-height: 1;
  margin-bottom: 5px;
}

.current-conditions .wi {
  font-size: 50px;
}

.forecast-day .wi {
  font-size: 40px;
}

/* Add these styles for the new details */

.weather-extra-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.9em;
  color: #555;
  padding: 10px 5px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.wind-details {
  display: flex;
  align-items: center;
}

.wind-details .wi {
  font-size: 1.5em; /* Wind icon size */
  margin-right: 5px;
  line-height: 1;
}

.last-updated {
  text-align: center;
  font-size: 0.8em;
  color: #999;
  margin-top: 15px;
}