body {
    background-color: aliceblue;
    font-family: Arial, sans-serif;
}

.weather-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 100px auto;
    padding: 40px 60px;
    width: 350px;
    transition: background-color 0.4s ease;
}

.search-box {
    display: flex;
    gap: 10px;
}

#city-input {
    padding: 10px 14px;
    width: 180px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    padding: 10px 16px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

button:hover {
    background-color: #005fa3;
}

#weather-result {
    font-size: 18px;
    text-align: center;
}

/* Added a small rule for the weather icon size */
.weather-icon {
    width: 100px;
    height: 100px;
}
