/* Offline UI — gray uncached songs; connection status uses showAppLabel() */

body.is-offline .song-item--uncached {
    opacity: 0.42;
    cursor: not-allowed;
}

body.is-offline .song-item--uncached .song-title,
body.is-offline .song-item--uncached .song-author {
    color: var(--text-tertiary);
}

body.is-offline .song-item--uncached:hover {
    background: transparent;
}

body.is-offline .song-item--uncached .song-menu-btn {
    display: none;
}

/* Settings → Offline */
.offline-cache-stats {
    margin: 12px 0 8px;
}

.offline-cache-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.offline-cache-progress {
    margin-top: 10px;
    height: 6px;
    border-radius: 999px;
    background: var(--border);
    overflow: hidden;
}

.offline-cache-progress-bar {
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: var(--accent);
    transition: width 0.2s ease;
}

.offline-cache-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
