body {
    width: 375px;
    height: 650px;
    margin: auto;
    background-color: #87CEEB;
    font-family: Arial, sans-serif;
    text-align: center;
    border: 1px solid #000;
    padding: 10px;
}
.weather-container {
    background-color: #87CEEB;
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.icon {
    font-size: 50px;
}
.temperature {
    font-size: 40px;
    font-weight: bold;
}
.details {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.button {
    padding: 10px 20px;
    margin: 5px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background-color: lightblue;
}
.active {
    background-color: gray;
}
.forecast {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.forecast td, .forecast th {
    border: 1px solid black;
    padding: 5px;
}
.hidden {
    display: none;
}

.settings-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: none;
}
.popup .close {
    cursor: pointer;
    float: right;
    font-size: 20px;
}