.weather-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.weather-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;  
  padding: 0;
}

.weather-title {
  text-align: center;
}

.weather-card {
  padding: 30px;
  max-width: 500px;
}

.weather-title {
  margin: 0 0 1rem 0;
}

.weather-card {
  margin: 0 auto;
}

.input-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

input {
  padding: 10px;
  border-radius: var(--radius);
  border: 2px solid var(--pink-500);
  background: var(--pink-50);
  color: var(--pink-700);
}

button {
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--pink-500);
  color: var(--pink-50);
  border: none;
  cursor: pointer;
}

button:hover {
  background: var(--pink-700);
}

#forecast-container {
  display: flex;
  gap: 20px;
  overflow-x: visible; 
  justify-content: center;
  padding-top: 1rem;
  min-height: 160px;    
}

.forecast-card {
  background: var(--pink-300);
  padding: 15px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 130px;
}

.forecast-title {text-align: center;

}

.icon {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto 10px;
}

/* Sun */
.sun {
  width: 40px;
  height: 40px;
  background: #ffdf6b;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 223, 107, 0.6);
  position: absolute;
  top: 10px;
  left: 10px;
}

/* Cloud */
.cloud {
  width: 55px;
  height: 30px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  bottom: 5px;
  left: 2px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud::before {
  width: 28px;
  height: 28px;
  top: -12px;
  left: 5px;
}

.cloud::after {
  width: 22px;
  height: 22px;
  top: -8px;
  right: 5px;
}

/* Rain drop */
.rain-drop {
  width: 8px;
  height: 14px;
  background: #5ea0ff;
  border-radius: 50% 50% 60% 60%;
  position: absolute;
  bottom: -10px;
  left: 26px;
}

/* Snowflake */
.snowflake {
  width: 10px;
  height: 10px;
  border: 2px solid #b3e5ff;
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
  left: 25px;
}

.forecast-card {
  background: var(--pink-300);
  padding: 15px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 140px;
  text-align: center;
  font-family: "Unica One", sans-serif;
}

.weather-wrapper {
  padding: 0;
}

.weather-card {
  padding: 20px;
}

.forecast-title {
  margin: 0.5rem 0;
}

.city-name {
  color: #df1785; /* or whatever Analog Media magic you want */
  font-family: Metamorphous;
  transition: color 0.3s ease;
}