/* Weather Widget Styles */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--text-color);
    font-size: 13px;
    height: 36px;
    background: transparent;
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}



.weather-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.weather-temp {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.weather-condition {
    font-size: 11px;
    opacity: 0.85;
    font-weight: 400;
}

.weather-location {
    font-size: 10px;
    opacity: 0.7;
    margin-top: -1px;
}

/* Loading state */
.weather-widget.loading .weather-icon {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Error state */
.weather-widget.error {
    opacity: 0.6;
}

.weather-widget.error .weather-icon {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .weather-widget {
        padding: 4px 8px;
        gap: 8px;
    }

    .weather-condition,
    .weather-location {
        display: none;
    }
}

/* Dark mode adjustments */
/* @media (prefers-color-scheme: dark) {
    .weather-widget {
        background: rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .weather-widget:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }
} */