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

html {
    height: 100%;
    width: 100%;
    font-family: sans-serif;
}

#weather-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

#weather-form div {
    margin-bottom: 10px;
}

#weather-form h2 {
    margin: 15px 0;
}

#weather-form input[type="text"],
#weather-form button {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#weather-form input[type="text"] {
    max-width: 100%;
}

#weather-form button {
    background-color: #4caf50;
    color: white;
    cursor: pointer;
}

#weather-form button:hover {
    background-color: #3e8e41;
}

.error-msg {
    color: red;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 0;
    padding: 10px;
}

.forecastList {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.locationInfo {
    margin-bottom: 10px;
}

.weatherInfo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.item {
    border-right: 1px solid #ccc;
    padding: 10px 15px;
}

.item:last-child {
    border-right: none;
}