/* ===== WIDGET DE CLIMA - VERSIÓN FORZADA ===== */
.weather-widget {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: #1a1e2a !important;
    border: 1px solid #00ff6a !important;
    border-radius: 40px !important;
    padding: 6px 16px !important;
    height: 40px !important;
    min-width: 100px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.weather-widget:hover {
    background: #2a2e3a !important;
    box-shadow: 0 0 10px rgba(0, 255, 106, 0.3) !important;
}

.weather-icon {
    font-size: 20px !important;
    line-height: 1 !important;
    color: #00ff6a !important;
    filter: drop-shadow(0 0 3px #00ff6a) !important;
}

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

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

/* Responsive */
@media (max-width: 700px) {
    .weather-city {
        display: none !important;
    }
    .weather-widget {
        min-width: 70px !important;
        padding: 6px 12px !important;
    }
    .weather-icon {
        font-size: 18px !important;
    }
    .weather-temp {
        font-size: 14px !important;
    }
}
