.weather-widget {
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    backdrop-filter: blur(5px);
    max-width: 200px;
}

.weather-widget h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 8px;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.weather-temp {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.weather-condition {
    color: var(--text-color);
    font-size: 0.9rem;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.weather-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .weather-widget {
        display: none;
    }
}
