body {
    font-family: Arial, sans-serif;
    background: #e0e7ef;
    margin: 0;
    padding: 0;
}
.weather-app {
    background: #fff;
    max-width: 400px;
    margin: 50px auto;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
input[type="text"] {
    padding: 10px;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}
button {
    padding: 10px 20px;
    border: none;
    background: #0077ff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
}
button:hover {
    background: #005fcc;
}
#weatherResult, #forecastResult {
    margin-top: 20px;
    text-align: left;
} 