/* VV IVS Weather Widget Styles */
.vv-ivs-weather-widget {
    font-family: inherit;
    color: inherit;
}

.weather-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.weather-icon {
    width: 50px;
    height: 50px;
    margin-right: 8px;
}

.weather-temp {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.weather-description {
    text-align: center;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.weather-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.weather-detail {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.weather-location {
    text-align: center;
    font-size: 11px;
    opacity: 0.8;
    font-style: italic;
}

.weather-widget-error {
    color: #ff6b6b;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 4px;
}

/* Floating weather widget specific styles */
.floating-widget.weather-widget {
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .floating-widget.weather-widget {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .vv-ivs-weather-widget {
        font-size: 12px;
    }
    
    .weather-temp {
        font-size: 20px;
    }
    
    .weather-icon {
        width: 40px;
        height: 40px;
    }
}
