
    .weather-widget {
        color: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        margin: 8px 0;
    }

    .weather-location {
        font-size: 1.8em;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .weather-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
        text-align: center;
    }

    .weather-icon {
        margin-bottom: 0px;
    }

    .weather-icon img {
        width: 120px;
        height: 120px;
        display: block;
        margin: 0 auto;
    }

    .weather-temp {
        text-align: center;
    }

    .temp-primary {
        font-size: 3.2em;
        font-weight: bold;
        line-height: 0;
    }

    .weather-details {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 12px;
        margin-top: 12px;
    }

    .weather-item {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 1.1em;
    }

    .weather-note {
        font-size: 0.5em;
        opacity: 0.8;
        margin-left: auto;
    }

    .weather-item i {
        width: 24px;
        font-size: 1.2em;
        text-align: center;
        opacity: 0.9;
    }

    @media (max-width: 480px) {
        .weather-location {
            font-size: 1.4em;
        }
        
        .temp-primary {
            font-size: 2.4em;
        }
        
        .weather-icon img {
            width: 100px;
            height: 100px;
        }
        
        .weather-item {
            font-size: 0.95em;
        }
    }