body {
    margin: 20px;
    text-align: center;
    background-color: #6eb5c0;
    color: #333;
}
.container {
    background-color: #ffffff;
    padding: 30px;
    max-width: 500px;
    margin: 30px auto;
}
h1 {
    color: #006c84;
    margin-bottom: 25px;
}
#weather-info {
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #555;
}
#chance-message {
    font-size: 1.3em;
    font-weight: bold;
    color: #63a5af;
    margin-bottom: 30px;
}
#no-chance-message {
    font-size: 1.3em;
    font-weight: bold;
    color: #fc5922;
    margin-bottom: 30px;
}
button {
    background-color: #e2e8e4;
    color: #006c84;
    border: none;
    padding: 15px 25px;
    border-radius: 20px;;
    font-size: 1.1em;
    cursor: pointer;

}
button:hover {
    background-color: #ffccbb;
    color: #006c84;
}
#record-list {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
#record-list h2 {
    color: #006c84;
    margin-bottom: 15px;
}
#record-list ul {
    list-style: none;
    padding: 0;
}
#record-list li {
    background-color: #e2e8e4;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    font-size: 0.95em;
    color: #444;
}
.error-message {
    color: #fc5922;
    font-weight: bold;
    margin-top: 20px;
}