.widget-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(to right,rgb(236, 209, 87),rgb(210, 142, 255));
    flex-direction: column;
    padding: 25px 35px;
    display: flex;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 90%;
    box-sizing: border-box;
    margin: auto;
    color: rgb(0,0,0);
}
.warningMessage{
    background: linear-gradient(to right,rgb(0,0,0),rgb(119, 119, 119),rgb(0,0,0));
    height: 40%;
    padding: 25px 35px;
    border-radius: 15px;
    color: #ff0000;
}
#clock {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}
#date-week {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000000;
}
.weather-info {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
#weather-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}
#weather-details {
    text-align: left;
}
.footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #ff0000;
}
/* 響應式設計：針對窄屏幕進行調整 */
@media (max-width: 480px) {
    #clock {
        font-size: 2.8rem;
    }
    #date-week {
        font-size: 1.2rem;
    }
    .weather-info {
        font-size: 1rem;
    }
    #weather-icon {
        width: 50px;
        height: 50px;
    }
    .widget-container {
        padding: 20px;
    }
}