* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom, #4a90e2, #2c3e50);
  color: white;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.app-wrap {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.app-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
}

.search-box {
  width: 100%;
  padding: 15px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
}

.suggestions-list {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.suggestions-list li {
  padding: 10px 15px;
  color: #333;
  transition: background 0.3s;
}

.suggestions-list li:hover {
  background: #f0f0f0;
}

.current .temp {
  font-size: 5em;
  font-weight: 700;
}

.current .weather {
  font-size: 1.5em;
  margin-top: 10px;
}

.hi-low {
  font-size: 1.2em;
  margin-top: 10px;
}
