/* weather-background.css */

/* 天気による背景スタイル */
body.晴れ {
  background-size: cover;
  background-position: center;
}

body.曇り {
  background-size: cover;
  background-position: center;
}

body.雨 {
  background-size: cover;
  background-position: center;
}

body.雪 {
  background-size: cover;
  background-position: center;
}

body.嵐 {
  background-size: cover;
  background-position: center;
}

body.エラー {
  background-size: cover;
  background-position: center;
  background-color: #ffcccc;
}

/* ウィジェットのスタイル */
.widget-area .weather-widget {
  background-color: #ffffff;
  border: 1px solid black;
  padding: 10px;
  border-radius: 5px;
}
