body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333;
}

.search {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#city-input {
  padding: 10px;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#search-btn {
  padding: 10px 20px;
  margin-left: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#search-btn:hover {
  background-color: #0056b3;
}

.weather-section {
  margin-top: 20px;
}

.current-weather, .hourly-forecast, .weekly-forecast, .radar {
  margin-bottom: 20px;
}

h2 {
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
}

#current-conditions, #hourly-forecast, #weekly-forecast {
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
}