.compact-weather {
    background: var(--bg-2);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.compact-main {
    margin-bottom: 12px;
}

.current-temp {
    font-size: 36px;
    font-weight: 300;
}

.current-condition {
    font-size: 14px;
    opacity: 0.6;
}

.compact-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
}

.city-name {
    font-size: 12px;
    opacity: 0.6;
}

.loading-state {
    background: var(--bg-2);
    padding: 24px;
}

.no-data {
    background: var(--bg-2);
    padding: 24px;
    text-align: center;
}

.error-state .widget-header {
    background: rgba(var(--accent-rgb, 255, 99, 71), 0.1);
}

.weather-map {
    background: var(--bg-2);
    padding: 16px;
    border-radius: 12px;
}

.map-attribution {
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}

.debug-data {
    background: var(--bg-2);
}

.debug-data summary {
    padding: 12px;
    background: var(--bg-3);
    cursor: pointer;
}

.debug-data pre {
    padding: 16px;
    font-size: 11px;
}

.widgets-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

@media (max-width: 500px) {
    .compact-weather {
        padding: 12px;
    }

    .current-temp {
        font-size: 28px;
    }

    .compact-stats {
        gap: 8px;
    }

    .meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .current {
        grid-template-columns: 1fr;
    }

    .widgets-section {
        display: flex;
        flex-direction: column;
    }

    #map {
        height: 180px;
    }
}
