.weather-header-container {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  /* background-color: #111; */
  color: white;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  max-width: 400px;
}

.weather-header-container.clickable {
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  position: relative;
  padding-right: 30px;
}

.weather-header-container.clickable:active {
  transform: translateY(0);
}

.weather-header-arrow {
  position: absolute;
  right: 12px;
  font-size: 24px;
  font-weight: 300;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.weather-header-container.clickable:hover .weather-header-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.weather-header-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
  color: white;
  width: 24px;
  height: 24px;
}

.weather-header-temp {
  font-size: 20px;
  font-weight: 500;
  margin-right: 10px;
}

.weather-header-condition {
  font-size: 20px;
  opacity: 0.9;
}

.weather-header-loading,
.weather-header-error {
  padding: 10px;
  /* background-color: #111; */
  color: white;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  max-width: 400px;
}

.weather-header-error {
  /* background-color: rgba(255, 0, 0, 0.1); */
  border-left: 3px solid red;
}

/* Responsive styles */
@media (max-width: 480px) {
  .weather-header-container {
    flex-wrap: wrap;
  }
  
  .weather-header-condition {
    width: 100%;
    margin-top: 5px;
    font-size: 16px;
  }
} 

.is-light .weather-header-container{
  color: #000;
}

.is-light .weather-header-container .weather-header-temp{
  color: #000;
}

.is-light .weather-header-container .weather-header-condition{
  color: #000;
}

.is-light .weather-header-container .weather-header-loading,
.is-light .weather-header-container .weather-header-error{
  color: #000;
}

.is-light .weather-header-container .weather-header-arrow{
  color: #000;
}

.is-light .weather-header-container .weather-header-icon{
  color: #000;
}


