/* Weather Widget Styles */

.weather-widget {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.weather-widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.weather-widget-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.weather-widget-title-link {
    text-decoration: none;
    color: inherit;
}

.weather-widget-title-link:hover .weather-widget-title {
    color: #f39c12;
}

.weather-widget-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    transition: color 0.2s;
}

.weather-widget-subtitle {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
}

.weather-current {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.weather-temp {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
}

.weather-temp-unit {
    font-size: 1.5rem;
    opacity: 0.6;
    vertical-align: top;
}

.weather-condition {
    flex: 1;
}

.weather-condition-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.weather-condition-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.weather-detail {
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.weather-detail-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.weather-detail-label {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 3px;
    text-transform: uppercase;
}

.weather-loading {
    text-align: center;
    padding: 30px;
    opacity: 0.6;
}

.weather-error {
    text-align: center;
    padding: 20px;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
}
