/* ===== WIDGET DE CLIMA ULTRA SIMPLE ===== */
.weather-widget {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(30, 30, 40, 0.8) !important;
    border: 1px solid #00ff6a !important;
    border-radius: 30px !important;
    padding: 4px 12px !important;
    height: 36px !important;
    min-width: 90px !important;
}

.weather-icon {
    font-size: 18px !important;
    line-height: 1 !important;
    color: #00ff6a !important;
}

.weather-temp {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: white !important;
}

.weather-city {
    font-size: 11px !important;
    color: #aaa !important;
    max-width: 60px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

@media (max-width: 700px) {
    .weather-city {
        display: none !important;
    }
    .weather-widget {
        min-width: 60px !important;
        padding: 4px 8px !important;
    }
}
