body {
  font-family: Arial, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.weather-app-wrapper {
  max-width: 600px;
  width: 100%;
  padding: 20px;
}

.weather-app {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.05);
}

.search-form {
  display: flex;
  margin-bottom: 20px;
}

.form-control {
  flex-grow: 1;
  padding: 12px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

.search-button {
  margin-left: 10px;
  background-color: #885df1;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-button:hover {
  background-color: #7044db;
}

h1 {
  color: #212529;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overview li {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.5;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.current-temperature-container {
  display: flex;
  align-items: center;
}

.weather-icon {
  width: 64px;
  height: 64px;
}

#temperature {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
}

.units {
  font-size: 24px;
  position: relative;
  top: -24px;
}

.weather-details li {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 5px;
}

footer {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #6c757d;
}

footer a {
  color: #885df1;
  text-decoration: underline;
}
