/* === Widget de Clima OpenWeatherMap (Forecast 7 días) === */
.ow-forecast-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 18px 2px 10px 2px;
    max-width: 355px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: visible !important;
}
.ow-current {
    text-align: center;
    margin-bottom: 10px;
}
.ow-city {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 2px;
}
.ow-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2px;
}
.ow-main-icon {
    font-size: 1.5rem;
    color: #4a90e2;
    vertical-align: middle;
}
.ow-temp {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}
.ow-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 4px;
    text-transform: capitalize;
}
.ow-forecast-list {
    display: flex;
    gap: 2px;
    margin-top: 8px;
    overflow: visible;
    padding-bottom: 2px;
    scrollbar-width: thin;
    scrollbar-color: #4a90e2 #f7fafd;
    justify-content: center;
}
.ow-forecast-day {
    position: relative;
    cursor: default;
    transition: background 0.2s, color 0.2s;
    flex: 0 0 44px;
    background: #f7fafd;
    border-radius: 8px;
    padding: 7px 3px 5px 3px;
    text-align: center;
    min-width: 44px;
    max-width: 44px;
}
.ow-forecast-day:hover {
    background: #fff176;
    color: inherit;
    box-shadow: none;
}
.ow-forecast-list::-webkit-scrollbar {
    height: 6px;
}
.ow-forecast-list::-webkit-scrollbar-thumb {
    background: #4a90e2;
    border-radius: 4px;
}
.ow-forecast-list::-webkit-scrollbar-track {
    background: #f7fafd;
}
.ow-forecast-dayname {
    font-size: 0.85rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 2px;
}
.ow-forecast-icon {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1px;
}
.ow-rain {
    color: #1ca0e3;
    font-size: 1.1rem;
    margin-left: 1px;
    vertical-align: middle;
}
.ow-forecast-temps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-top: 2px;
}
.ow-forecast-max {
    color: #e74c3c;
    font-size: 0.95rem;
    font-weight: 600;
}
.ow-forecast-min {
    color: #3498db;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 500px) {
    .ow-forecast-widget {
        max-width: 100%;
        padding: 10px 2px 6px 2px;
    }
    .ow-forecast-list {
        gap: 0;
    }
    .ow-forecast-day {
        min-width: 36px;
        max-width: 36px;
        padding: 5px 1px 3px 1px;
    }
    .ow-main-icon {
        font-size: 2rem;
    }
    .ow-temp {
        font-size: 1.3rem;
    }
}

.weather-error {
    color: #e74c3c;
    text-align: center;
    font-size: 1rem;
    padding: 10px;
}

.ow-demo-notice {
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2px;
    margin-top: 2px;
    text-align: center;
}

.widgets-sidebar,
.ow-forecast-widget {
    overflow: visible !important;
} 