body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    margin: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
}
.content {
    margin-left: 80px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: auto;
}
.page {
    display: none;
}
.page.active {
    display: block;
    transition: all 1s ease;
}
.weather-info {
    display: none;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.5s ease;
}
.weather-info:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
#cityName {
    font-size: 32px;
    margin: 0;
}
#weatherDetails p {
    font-size: 18px;
    margin: 5px 0;
}
#weatherIcon {
    width: 100px;
    height: 100px;
}
#hourlyForecast {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    margin-top: 20px;
}
#hourlyForecast div {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 10px;
    padding: 10px;
    border-radius: 5px;
    width: 120px;
    text-align: center;
    flex-shrink: 0;
    transition: box-shadow 0.2s ease;
}
#hourlyForecast div:hover {
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}
#hourlyForecast img {
    width: 50px;
    height: 50px;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}
.popup button {
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#saveLocationBtn {
    background: #00c6ff;
    color: white;
}
#closePopupBtn {
    background: #ff4c4c;
    color: white;
}
.settings-container {
    margin-top: 20px;
}
.settings-container input {
    padding: 10px;
    border: 2px solid #00c6ff;
    border-radius: 5px;
    width: calc(100% - 22px);
}
.settings-container button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #00c6ff;
    color: white;
    width: 100%;
}
.settings-container button:hover {
    background: #0072ff;
}
.settings-container h1 {
    margin-top: 0;
}
@media only screen and (max-width:500px) {
    .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: auto;
        margin-left: 0px;
        margin-top: 50px;
    }
    .weather-info {
        display: none;
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 20px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        transition: all 0.5s ease;
        width: 90%;
    }
}