/*body {
    background: linear-gradient(135deg, #74ebd5 0%, #ACB6E5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}*/

.container-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.temp-widget {
    background: #000;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 2rem 1.5rem;
    width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
}

.widget-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.temperature {
    font-size: 2.8rem;
    font-weight: bold;
    color: #0797bc;
}
.temperature sup{
    font-size: 1.2rem;
    vertical-align: super;
    color: #0797bc;
}

.weather {
    font-size: 1.1rem;
    color: #acabab;
}

.widget-footer {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #676767;
}

.humidity {
    color: #64d5ef;
}

.datetime {
    color: #a3a3a3;
}

@media (max-width: 500px) {
    .temp-widget {
        padding: 1rem;
        width: 100%;
    }
    .temperature {
        font-size: 2rem;
    }
}
