body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    font-family: Arial, sans-serif;
}

.weather-card {
    background: #ffffff;
    padding: 25px;
    width: 300px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.weather-card h1 {
    margin-bottom: 15px;
}

.weather-card input {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.weather-card button {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    background: #2a5298;
    color: white;
    cursor: pointer;
}

.weather-card button:hover {
    background: #1e3c72;
}

#weatherIcon {
    width: 80px;
    margin: 10px auto;
}

#cityInfo {
    margin-top: 10px;
    font-size: 16px;
}
#forecast {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
}