* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #111; color: #eee; min-height: 100vh; } #app { width: 100%; max-width: 1700px; margin: 0 auto; padding: 0.5rem; display: flex; flex-direction: column; min-height: 100vh; } h1 { font-size: 1rem; color: #888; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; } h3 { font-size: 0.8rem; color: #666; margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; } #sync-indicator { width: 8px; height: 8px; border-radius: 50%; background: #4e8; display: none; flex-shrink: 0; } #sync-indicator.visible { display: inline-block; } #sync-indicator.disconnected { background: #e44; } /* Header */ #header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; } #auth-section { display: flex; gap: 0.4rem; align-items: center; } #auth-section .user-info { display: flex; align-items: center; gap: 0.4rem; } #auth-section .username { color: #4e8; font-weight: 600; font-size: 0.85rem; } #auth-section .admin-badge { background: #c4f; color: #111; padding: 0.1rem 0.3rem; border-radius: 3px; font-size: 0.65rem; } #btn-logout { background: none; border: none; color: #e44; font-size: 0.65rem; cursor: pointer; padding: 0; opacity: 0.7; } #btn-logout:hover { opacity: 1; text-decoration: underline; } #btn-logout.guest-signin { background: #4e8; color: #111; font-size: 0.85rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 4px; opacity: 1; } #btn-logout.guest-signin:hover { background: #5fa; text-decoration: none; } #btn-kick-others { background: none; border: none; color: #ea4; font-size: 0.65rem; cursor: pointer; padding: 0; opacity: 0.7; } #btn-kick-others:hover { opacity: 1; text-decoration: underline; } #site-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; } #site-header h1 { margin: 0; } #btn-report-bug { color: #4e8; font-size: 0.8rem; text-decoration: none; padding: 0.3rem 0.6rem; border: 1px solid #4e8; border-radius: 4px; } #btn-report-bug:hover { background: #4e8; color: #111; } #stream-select select { background: #222; color: #eee; border: 1px solid #333; padding: 0.3rem 0.6rem; border-radius: 4px; font-size: 0.85rem; } /* Main content - library and queue */ #main-content { display: flex; gap: 0.5rem; flex: 1; min-height: 0; margin-bottom: 0.5rem; max-width: 1600px; margin-left: auto; margin-right: auto; } #channels-panel { flex: 0 0 160px; background: #1a1a1a; border-radius: 6px; padding: 0.4rem; display: flex; flex-direction: column; min-height: 250px; max-height: 60vh; } #channels-list { flex: 1; overflow-y: auto; } #channels-list .channel-item { padding: 0.2rem 0.4rem; border-radius: 3px; font-size: 0.8rem; display: flex; flex-direction: column; gap: 0.1rem; } #channels-list .channel-item.active { background: #2a4a3a; color: #4e8; } #channels-list .channel-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 0.1rem 0; border-radius: 3px; } #channels-list .channel-header:hover { background: #222; } #channels-list .channel-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.8rem; } #channels-list .channel-name-input { flex: 1; font-size: 0.8rem; background: #111; color: #eee; border: 1px solid #4e8; border-radius: 3px; padding: 0.1rem 0.3rem; outline: none; min-width: 0; } #channels-list .listener-count { font-size: 0.65rem; color: #666; flex-shrink: 0; margin-left: 0.3rem; } #channels-list .btn-delete-channel { background: none; border: none; color: #666; font-size: 0.9rem; cursor: pointer; padding: 0 0.2rem; line-height: 1; opacity: 0; transition: opacity 0.15s; } #channels-list .channel-header:hover .btn-delete-channel { opacity: 1; } #channels-list .btn-delete-channel:hover { color: #e44; } #channels-list .btn-rename-channel { background: none; border: none; color: #666; font-size: 0.7rem; cursor: pointer; padding: 0 0.2rem; line-height: 1; opacity: 0; transition: opacity 0.15s; } #channels-list .channel-header:hover .btn-rename-channel { opacity: 1; } #channels-list .btn-rename-channel:hover { color: #4e8; } #channels-list .channel-listeners { display: flex; flex-direction: column; margin-left: 0.5rem; border-left: 1px solid #333; padding-left: 0.3rem; } #channels-list .listener { font-size: 0.65rem; color: #aaa; padding: 0.05rem 0; position: relative; } #channels-list .listener::before { content: ""; position: absolute; left: -0.3rem; top: 50%; width: 0.2rem; height: 1px; background: #333; } #channels-list .listener-mult { color: #666; font-size: 0.55rem; } #library-panel, #queue-panel { flex: 0 0 700px; min-width: 0; overflow: hidden; background: #1a1a1a; border-radius: 6px; padding: 0.5rem; display: flex; flex-direction: column; min-height: 250px; max-height: 60vh; position: relative; } .panel-tabs { display: flex; gap: 0; margin-bottom: 0; flex-shrink: 0; } .panel-tab { background: #252525; border: none; color: #666; font-family: inherit; font-size: 0.8rem; font-weight: bold; padding: 0.3rem 0.6rem; cursor: pointer; border-radius: 4px 4px 0 0; text-transform: uppercase; letter-spacing: 0.05em; margin-right: 2px; } .panel-tab:hover { color: #aaa; background: #2a2a2a; } .panel-tab.active { color: #eee; background: #222; } .panel-views { flex: 1; display: flex; flex-direction: column; min-height: 0; overflow: hidden; position: relative; background: #222; border-radius: 0 4px 4px 4px; } .panel-view { display: none; flex-direction: column; flex: 1; min-height: 0; overflow: hidden; position: relative; padding: 0.4rem; } .panel-view.active { display: flex; } .tasks-empty { color: #666; font-size: 0.85rem; padding: 1rem; text-align: center; } .tasks-empty.hidden { display: none; } #tasks-list { display: flex; flex-direction: column; gap: 0.3rem; overflow-y: auto; flex: 1; } .task-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.6rem; background: #2a2a1a; border-radius: 4px; font-size: 0.8rem; color: #ea4; position: relative; overflow: hidden; } .task-item.complete { background: #1a2a1a; color: #4e8; } .task-item.error { background: #2a1a1a; color: #e44; } .task-item .task-spinner { display: inline-block; width: 12px; height: 12px; border: 2px solid #ea4; border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; flex-shrink: 0; } .task-item.complete .task-spinner { display: none; } .task-item.error .task-spinner { display: none; } .task-item .task-icon { flex-shrink: 0; } .task-item.complete .task-icon::before { content: "✓"; } .task-item.error .task-icon::before { content: "✗"; } .task-item .task-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .task-item .task-progress { font-size: 0.7rem; color: #888; flex-shrink: 0; } .task-item .task-bar { position: absolute; left: 0; bottom: 0; height: 2px; background: #ea4; transition: width 0.2s; } .task-item.complete .task-bar { background: #4e8; } .slow-queue-section { margin-top: 0.5rem; border-top: 1px solid #333; padding-top: 0.5rem; } .slow-queue-section.hidden { display: none; } .slow-queue-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.3rem; padding: 0 0.2rem; gap: 0.5rem; } .slow-queue-title { font-size: 0.75rem; color: #888; font-weight: 500; } .slow-queue-timer { font-size: 0.7rem; color: #6af; flex: 1; } .slow-queue-cancel-all { background: none; border: 1px solid #633; color: #a66; font-size: 0.65rem; padding: 0.15rem 0.4rem; border-radius: 3px; cursor: pointer; transition: all 0.15s; } .slow-queue-cancel-all:hover { background: #422; border-color: #844; color: #e88; } .slow-queue-list { display: flex; flex-direction: column; gap: 0.15rem; max-height: 200px; overflow-y: auto; } .slow-queue-playlist-header { font-size: 0.7rem; color: #888; padding: 0.3rem 0.2rem 0.15rem; margin-top: 0.2rem; border-top: 1px solid #2a2a2a; } .slow-queue-playlist-header:first-child { border-top: none; margin-top: 0; } .slow-queue-item { display: flex; align-items: center; gap: 0.4rem; padding: 0.25rem 0.4rem; background: #1a1a2a; border-radius: 3px; font-size: 0.75rem; color: #6af; } .slow-queue-item.next { background: #1a2a2a; color: #4cf; } .slow-queue-item-icon { flex-shrink: 0; font-size: 0.7rem; } .slow-queue-item-title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .slow-queue-cancel { background: none; border: none; color: #666; cursor: pointer; padding: 0 0.2rem; font-size: 0.7rem; opacity: 0; transition: opacity 0.15s; } .slow-queue-item:hover .slow-queue-cancel { opacity: 1; } .slow-queue-cancel:hover { color: #e44; } .scan-progress { font-size: 0.7rem; color: #ea4; padding: 0.2rem 0.4rem; background: #2a2a1a; border-radius: 3px; margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; } .scan-progress.hidden { display: none; } .scan-progress.complete { color: #4e8; background: #1a2a1a; } .scan-progress .spinner { display: inline-block; width: 10px; height: 10px; border: 2px solid #ea4; border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } .upload-btn { width: 100%; padding: 0.5rem; background: #2a3a2a; border: 1px dashed #4e8; border-radius: 4px; color: #4e8; font-size: 0.85rem; cursor: pointer; margin-top: 0.3rem; flex-shrink: 0; } .upload-btn:hover { background: #3a4a3a; } .add-btn { width: 100%; padding: 0.5rem; background: #252525; border: 1px solid #444; border-radius: 4px; color: #888; font-size: 0.85rem; cursor: pointer; margin-top: 0.3rem; flex-shrink: 0; transition: all 0.2s; } .add-btn:hover { background: #2a2a2a; border-color: #666; color: #aaa; } .add-btn.hidden { display: none; } .fetch-dialog { position: absolute; bottom: 0; left: 0; right: 0; background: #1a1a1a; border-top: 1px solid #333; border-radius: 0 0 6px 6px; display: flex; flex-direction: column; animation: panelSlideUp 0.2s ease-out; } .fetch-dialog.hidden { display: none; } .fetch-dialog.closing { animation: panelSlideDown 0.2s ease-in forwards; } .fetch-dialog-header { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0.5rem; border-bottom: 1px solid #333; } .fetch-dialog-header span { font-size: 0.8rem; color: #aaa; } .fetch-dialog-close { background: none; border: none; color: #666; font-size: 1.2rem; cursor: pointer; padding: 0 0.3rem; line-height: 1; } .fetch-dialog-close:hover { color: #aaa; } .fetch-dialog-content { padding: 0.5rem; display: flex; gap: 0.4rem; } .fetch-url-input { flex: 1; padding: 0.4rem 0.6rem; background: #222; border: 1px solid #444; border-radius: 4px; color: #eee; font-size: 0.85rem; font-family: inherit; } .fetch-url-input:focus { outline: none; border-color: #4e8; } .fetch-submit-btn { padding: 0.4rem 0.8rem; background: #2a3a2a; border: 1px solid #4e8; border-radius: 4px; color: #4e8; font-size: 0.85rem; cursor: pointer; font-family: inherit; } .fetch-submit-btn:hover { background: #3a4a3a; } .add-panel { position: absolute; bottom: 0; left: 0; right: 0; background: #1a1a1a; border-top: 1px solid #333; border-radius: 0 0 6px 6px; display: flex; flex-direction: column; height: 50%; overflow: hidden; animation: panelSlideUp 0.2s ease-out; } .add-panel.hidden { display: none; } .add-panel.closing { animation: panelSlideDown 0.2s ease-in forwards; } @keyframes panelSlideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } } @keyframes panelSlideDown { from { transform: translateY(0); opacity: 1; } to { transform: translateY(100%); opacity: 0; } } .add-panel-close { width: calc(100% - 1rem); margin: 0.5rem; padding: 0.5rem; background: #252525; border: 1px solid #444; border-radius: 4px; color: #888; font-size: 0.85rem; cursor: pointer; flex-shrink: 0; } .add-panel-close:hover { background: #2a2a2a; border-color: #666; color: #aaa; } .add-panel-content { flex: 1; overflow-y: auto; padding: 0 0.5rem 0.5rem; display: flex; flex-direction: column; gap: 0.3rem; } .add-option { width: 100%; padding: 0.6rem 0.8rem; background: #222; border: 1px solid #333; border-radius: 4px; color: #aaa; font-size: 0.85rem; cursor: pointer; text-align: left; transition: all 0.15s; } .add-option:hover { background: #2a3a2a; border-color: #4e8; color: #4e8; } .upload-progress { display: flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.5rem; background: #2a2a1a; border-radius: 4px; margin-top: 0.3rem; flex-shrink: 0; position: relative; overflow: hidden; } .upload-progress.hidden { display: none; } .upload-progress-bar { position: absolute; left: 0; top: 0; bottom: 0; background: #4a6a4a; transition: width 0.2s; } .upload-progress-text { position: relative; z-index: 1; font-size: 0.75rem; color: #4e8; } .upload-dropzone { position: absolute; inset: 0; background: rgba(42, 74, 58, 0.95); display: flex; align-items: center; justify-content: center; border-radius: 6px; border: 2px dashed #4e8; z-index: 10; } .upload-dropzone.hidden { display: none; } .dropzone-content { color: #4e8; font-size: 1.2rem; font-weight: 600; } #queue-title { margin: 0 0 0.3rem 0; } .now-playing-bar { font-size: 0.75rem; color: #4e8; padding: 0.3rem 0.5rem; background: #1a2a1a; border: 1px solid #2a4a3a; border-radius: 4px; margin-bottom: 0.3rem; cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .now-playing-bar:hover { background: #2a3a2a; } .now-playing-bar.hidden { display: none; } .now-playing-bar .label { color: #666; } .panel-header { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.3rem; } .panel-header h3 { margin: 0; flex-shrink: 0; } .panel-header select { flex: 1; background: #222; color: #eee; border: 1px solid #333; padding: 0.2rem 0.4rem; border-radius: 4px; font-size: 0.75rem; } .panel-header button { background: #333; color: #eee; border: 1px solid #444; width: 24px; height: 24px; border-radius: 4px; cursor: pointer; font-size: 0.9rem; line-height: 1; padding: 0; } .panel-header button:hover { background: #444; } .new-channel-input { flex: 1; background: #222; color: #eee; border: 1px solid #333; padding: 0.2rem 0.4rem; border-radius: 4px; font-size: 0.75rem; } .btn-submit-channel { background: #2a4a3a; color: #4e8; border: 1px solid #3a5a4a; width: 24px; height: 24px; border-radius: 4px; cursor: pointer; font-size: 1rem; line-height: 1; padding: 0; } .btn-submit-channel:hover { background: #3a5a4a; } .search-input { flex: 1; background: #222; color: #eee; border: 1px solid #333; padding: 0.2rem 0.4rem; border-radius: 4px; font-size: 0.75rem; } .search-input::placeholder { color: #666; } #library, #queue { flex: 1; overflow-y: auto; overflow-x: hidden; min-width: 0; } #library .track, #queue .track, #playlist-tracks .track { padding: 0.3rem 0.5rem; border-radius: 4px; cursor: pointer; font-size: 0.85rem; display: flex; justify-content: space-between; align-items: center; position: relative; user-select: none; min-width: 0; } #library .track[title], #queue .track[title], #playlist-tracks .track[title] { cursor: pointer; } #library .track:hover, #queue .track:hover, #playlist-tracks .track:hover { background: #222; } #queue .track.active { background: #2a4a3a; color: #4e8; } .cache-indicator { width: 3px; height: 100%; position: absolute; left: 0; top: 0; border-radius: 4px 0 0 4px; } .track.cached .cache-indicator { background: #4e8; } .track.not-cached .cache-indicator { background: #ea4; } .track-number { color: #555; font-size: 0.7rem; min-width: 1.3rem; margin-right: 0.2rem; } .track-title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; } .track-actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; } .track-actions .duration { color: #666; font-size: 0.75rem; } .track-actions .track-play-btn { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: #333; border: none; border-radius: 3px; font-size: 0.7rem; color: #aaa; cursor: pointer; transition: background 0.2s, color 0.2s; } .track-actions .track-play-btn:hover { background: #48f; color: #fff; } .track-actions .track-preview-btn { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: #333; border: none; border-radius: 3px; font-size: 0.7rem; color: #aaa; cursor: pointer; transition: background 0.2s, color 0.2s; } .track-actions .track-preview-btn:hover { background: #4a4; color: #fff; } .track-actions .track-add, .track-actions .track-remove { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; background: #333; border: none; border-radius: 3px; font-size: 0.85rem; color: #ccc; cursor: pointer; opacity: 0; transition: opacity 0.2s; } .track:hover .track-add, .track:hover .track-remove { opacity: 0.6; } .track-actions .track-add:hover, .track-actions .track-remove:hover { opacity: 1; background: #444; } .track-actions .track-remove { color: #e44; } .track-actions .track-add { color: #4e4; } /* Track selection */ .track-checkmark { color: #4e8; font-weight: bold; margin-right: 0.4rem; font-size: 0.85rem; } .track.selected { background: #2a3a4a; } .track.dragging { opacity: 0.5; } /* Allow drop events to pass through to parent track element */ .track > * { pointer-events: none; } .track > .track-actions { pointer-events: auto; } .track > .track-actions > * { pointer-events: auto; } .track.drop-above::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: #4e8; border-radius: 2px; } .track.drop-below::after { content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: #4e8; border-radius: 2px; } #queue.drop-target, #queue .drop-zone, #playlist-tracks.drop-target { border: 2px dashed #4e8; border-radius: 4px; } #queue .drop-zone { padding: 1.5rem; text-align: center; color: #4e8; } /* Context menu */ .context-menu { position: fixed; background: #222; border: 1px solid #444; border-radius: 5px; padding: 0.2rem 0; z-index: 1000; min-width: 130px; box-shadow: 0 4px 12px rgba(0,0,0,0.6); } .context-menu-item { padding: 0.4rem 0.75rem; cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; gap: 0.4rem; } .context-menu-item:hover { background: #333; } .context-menu-item.danger { color: #e44; } .context-menu-item.danger:hover { background: #3a2a2a; } /* Player bar */ #player-bar { background: #1a1a1a; border-radius: 6px; padding: 0.5rem 0.75rem; display: flex; gap: 0.75rem; align-items: center; } #now-playing { width: 180px; flex-shrink: 0; } #channel-name { font-size: 0.7rem; color: #666; margin-bottom: 0.1rem; } #track-name { font-size: 0.9rem; font-weight: 600; overflow: hidden; position: relative; } #track-name .marquee-inner { display: inline-block; white-space: nowrap; } #track-name.scrolling .marquee-inner { animation: scroll-marquee 8s linear infinite; } @keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } #player-controls { flex: 1; } #progress-row { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.2rem; } #progress-row.denied { animation: flash-red 0.5s ease-out; } @keyframes flash-red { 0% { background: #e44; } 100% { background: transparent; } } #btn-sync { font-size: 0.7rem; cursor: pointer; color: #666; transition: color 0.2s, text-shadow 0.2s; letter-spacing: 0.05em; } #btn-sync:hover { color: #888; } #btn-sync.synced { color: #eb0; text-shadow: 0 0 8px #eb0, 0 0 12px #eb0; } #btn-sync.synced.connected { color: #4e8; text-shadow: 0 0 8px #4e8, 0 0 12px #4e8; } #btn-prev, #btn-next { font-size: 0.75rem; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; } #btn-prev:hover, #btn-next:hover { opacity: 1; } #btn-mode { font-size: 0.7rem; cursor: pointer; transition: color 0.2s, text-shadow 0.2s; letter-spacing: 0.05em; padding: 0.1rem 0.3rem; border-radius: 3px; } #btn-mode.mode-once { color: #888; text-shadow: none; } #btn-mode.mode-repeat-all { color: #4e8; text-shadow: 0 0 6px #4e8; } #btn-mode.mode-repeat-one { color: #eb0; text-shadow: 0 0 6px #eb0; } #btn-mode.mode-shuffle { color: #c4f; text-shadow: 0 0 6px #c4f; } #btn-mode:hover { opacity: 0.8; } #status-icon { font-size: 0.85rem; width: 1rem; text-align: center; cursor: pointer; } #progress-container { background: #222; border-radius: 4px; height: 5px; cursor: pointer; position: relative; flex: 1; } #progress-bar { background: #555; height: 100%; border-radius: 4px; width: 0%; transition: width 0.3s linear; pointer-events: none; } #progress-bar.playing.synced { background: #4e8; } #progress-bar.playing.local { background: #c4f; } #progress-bar.muted { background: #555 !important; } #seek-tooltip { position: absolute; bottom: 10px; background: #333; color: #eee; padding: 2px 5px; border-radius: 3px; font-size: 0.7rem; pointer-events: none; display: none; transform: translateX(-50%); } #time { font-size: 0.75rem; color: #888; margin: 0; line-height: 1; white-space: nowrap; } #buffer-bar { display: flex; gap: 1px; margin-bottom: 0.2rem; } #buffer-bar .segment { flex: 1; height: 2px; background: #333; border-radius: 1px; } #buffer-bar .segment.available { background: #396; } #buffer-bar .segment.loading { background: #666; animation: throb 0.6s ease-in-out infinite alternate; } @keyframes throb { from { background: #444; } to { background: #888; } } #download-speed { font-size: 0.6rem; color: #555; text-align: right; } #volume-controls { display: flex; gap: 0.4rem; align-items: center; } #btn-stream-only { font-size: 0.7rem; cursor: pointer; color: #666; transition: color 0.2s, text-shadow 0.2s; letter-spacing: 0.05em; } #btn-stream-only:hover { color: #888; } #btn-stream-only.active { color: #4af; text-shadow: 0 0 6px #4af; } #btn-mute { font-size: 1rem; cursor: pointer; opacity: 0.8; transition: opacity 0.2s; } #btn-mute:hover { opacity: 1; } #volume { width: 120px; accent-color: #4e8; } /* Common */ button { background: #222; color: #eee; border: 1px solid #333; padding: 0.4rem 1rem; border-radius: 4px; cursor: pointer; font-size: 0.85rem; } button:hover { background: #333; } #status { margin-top: 0.3rem; font-size: 0.75rem; color: #666; text-align: center; } .empty { color: #666; font-style: italic; font-size: 0.85rem; } /* Login panel */ #login-panel { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.5rem; background: #1a1a1a; border-radius: 6px; border: 1px solid #333; max-width: 360px; margin: auto; } #login-panel.hidden { display: none; } #login-panel h2 { font-size: 1rem; color: #888; margin-bottom: 0.3rem; } #login-panel .tabs { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; } #login-panel .tabs button { background: none; border: none; color: #666; font-size: 0.9rem; cursor: pointer; padding: 0.4rem 0; border-bottom: 2px solid transparent; } #login-panel .tabs button.active { color: #4e8; border-bottom-color: #4e8; } #login-panel input { background: #222; color: #eee; border: 1px solid #333; padding: 0.5rem; border-radius: 4px; font-size: 0.9rem; } #login-panel .form-group { display: flex; flex-direction: column; gap: 0.4rem; } #login-panel .form-group.hidden { display: none; } #login-panel .submit-btn { background: #4e8; color: #111; border: none; padding: 0.5rem; border-radius: 4px; font-size: 0.9rem; cursor: pointer; font-weight: 600; } #login-panel .submit-btn:hover { background: #5fa; } #auth-error, #signup-error { color: #e44; font-size: 0.75rem; } #guest-section { margin-top: 0.75rem; } #guest-section.hidden { display: none; } #guest-section .divider { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: #666; font-size: 0.8rem; } #guest-section .divider::before, #guest-section .divider::after { content: ""; flex: 1; height: 1px; background: #333; } #guest-section .guest-btn { width: 100%; background: #333; color: #eee; border: 1px solid #444; padding: 0.5rem; border-radius: 4px; font-size: 0.9rem; cursor: pointer; } #guest-section .guest-btn:hover { background: #444; } #player-content { display: none; flex-direction: column; flex: 1; } #player-content.visible { display: flex; } ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background-color: #111; border-radius: 3px; } ::-webkit-scrollbar-thumb { background-color: #333; border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background-color: #555; } /* Toast notifications */ #toast-container { position: fixed; top: 0.5rem; left: 0.5rem; display: flex; flex-direction: column; gap: 0.4rem; z-index: 1000; pointer-events: none; max-height: 80vh; overflow-y: auto; } .toast { background: #1a3a2a; color: #4e8; padding: 0.5rem 0.75rem; border-radius: 5px; border: 1px solid #4e8; box-shadow: 0 4px 12px rgba(0,0,0,0.4); font-size: 0.8rem; animation: toast-in 0.3s ease-out; max-width: 280px; } .toast.toast-warning { background: #3a3a1a; color: #ea4; border-color: #ea4; } .toast.toast-error { background: #3a1a1a; color: #e44; border-color: #e44; } .toast.fade-out { animation: toast-out 0.3s ease-in forwards; } @keyframes toast-in { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } } @keyframes toast-out { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-20px); } } /* Toast history panel */ #btn-history { position: fixed; bottom: 0.5rem; left: 0.5rem; background: #222; border: 1px solid #333; color: #888; padding: 0.3rem 0.6rem; border-radius: 4px; cursor: pointer; font-size: 0.7rem; z-index: 999; } #btn-history:hover { background: #333; color: #ccc; } #toast-history { position: fixed; bottom: 3rem; left: 0.5rem; width: 320px; max-height: 400px; background: #1a1a1a; border: 1px solid #333; border-radius: 6px; z-index: 1001; display: flex; flex-direction: column; } #toast-history.hidden { display: none; } .history-header { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem; border-bottom: 1px solid #333; color: #888; font-size: 0.8rem; } .history-header button { background: none; border: none; color: #888; cursor: pointer; font-size: 1rem; padding: 0; width: 20px; height: 20px; } .history-header button:hover { color: #ccc; } #toast-history-list { flex: 1; overflow-y: auto; padding: 0.3rem; max-height: 350px; } .history-item { padding: 0.3rem 0.5rem; font-size: 0.75rem; border-radius: 3px; margin-bottom: 0.2rem; color: #4e8; background: #1a2a1a; } .history-item.history-warning { color: #ea4; background: #2a2a1a; } .history-item.history-error { color: #e44; background: #2a1a1a; } .history-time { color: #666; margin-right: 0.4rem; } /* Playlists UI */ .playlists-container { display: flex; flex: 1; min-height: 0; gap: 0.5rem; } #playlists-list-panel { width: 180px; flex-shrink: 0; display: flex; flex-direction: column; overflow: hidden; } #playlist-contents-panel { flex: 1; display: flex; flex-direction: column; min-width: 0; overflow: hidden; } .playlists-section { margin-bottom: 0.5rem; } .playlists-section h4 { color: #666; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; padding: 0 0.3rem; } .playlist-item { padding: 0.3rem 0.5rem; border-radius: 4px; cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; gap: 0.3rem; } .playlist-item:hover { background: #2a2a2a; } .playlist-item.selected { background: #2a4a3a; } .playlist-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .playlist-owner { color: #666; font-size: 0.7rem; } .playlist-count { color: #666; font-size: 0.7rem; background: #333; padding: 0.1rem 0.3rem; border-radius: 3px; } .empty-playlists { color: #555; font-size: 0.75rem; padding: 0.5rem; font-style: italic; } .new-playlist-btn { width: 100%; padding: 0.4rem 0.5rem; background: #252525; border: 1px dashed #444; border-radius: 4px; color: #888; font-size: 0.8rem; cursor: pointer; margin-top: auto; } .new-playlist-btn:hover { background: #2a2a2a; border-color: #4e8; color: #4e8; } .new-playlist-input, .playlist-rename-input { width: 100%; padding: 0.3rem 0.5rem; background: #222; border: 1px solid #4e8; border-radius: 4px; color: #eee; font-size: 0.8rem; margin-bottom: 0.3rem; outline: none; } #playlist-contents-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.3rem; padding: 0.3rem; background: #252525; border-radius: 4px; } #selected-playlist-name { font-size: 0.9rem; font-weight: 600; color: #eee; } #playlist-actions { display: flex; gap: 0.3rem; } #playlist-actions.hidden { display: none; } #playlist-actions button { padding: 0.2rem 0.5rem; font-size: 0.75rem; background: #333; border: 1px solid #444; border-radius: 3px; color: #aaa; cursor: pointer; } #playlist-actions button:hover { background: #444; color: #eee; } #playlist-tracks { flex: 1; overflow-y: auto; } .playlist-track { display: flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.5rem; border-radius: 4px; font-size: 0.8rem; cursor: pointer; } .playlist-track:hover { background: #2a2a2a; } .playlist-track .track-number { color: #555; font-size: 0.7rem; min-width: 1.5rem; } .playlist-track .track-title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .playlist-track .track-duration { color: #666; font-size: 0.75rem; } .empty-playlist-tracks { color: #555; font-size: 0.8rem; padding: 1rem; text-align: center; font-style: italic; } .context-menu-separator { height: 1px; background: #333; margin: 0.2rem 0; } .context-menu-item.has-submenu { position: relative; } .context-submenu { position: absolute; display: none; top: -4px; left: calc(100% - 8px); padding-left: 8px; background: transparent; min-width: 120px; z-index: 1001; } .context-submenu-inner { background: #222; border: 1px solid #444; border-radius: 4px; padding: 0.2rem 0; } .context-menu-item.has-submenu:hover > .context-submenu { display: block; } .context-submenu .context-menu-item { padding: 0.4rem 0.75rem; } .context-menu-item.disabled { color: #666; cursor: default; } .context-menu-item.disabled:hover { background: transparent; } /* Mobile tab bar - hidden on desktop */ #mobile-tabs { display: none; } /* Mobile responsive styles */ @media (max-width: 768px) { html, body { height: 100%; overflow: hidden; } #app { padding: 0.3rem; height: 100%; max-height: 100%; overflow: hidden; } #player-content { flex: 1; min-height: 0; overflow: hidden; } /* Header */ #site-header { margin-bottom: 0.3rem; flex-shrink: 0; } #site-header h1 { font-size: 0.9rem; } #btn-report-bug { font-size: 0.7rem; padding: 0.2rem 0.4rem; } #header-row { flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.3rem; flex-shrink: 0; } #auth-section .user-info { flex-wrap: wrap; gap: 0.3rem; } #btn-kick-others { display: none; } /* Mobile tab bar */ #mobile-tabs { display: flex; gap: 2px; margin-bottom: 0.3rem; background: #1a1a1a; border-radius: 6px; padding: 3px; flex-shrink: 0; } .mobile-tab { flex: 1; background: transparent; border: none; color: #666; font-size: 0.8rem; font-weight: 600; padding: 0.5rem; cursor: pointer; border-radius: 4px; transition: all 0.2s; } .mobile-tab:hover { color: #888; } .mobile-tab.active { background: #4e8; color: #111; } /* Main content - single column, fixed height for scroll */ #main-content { flex-direction: column; gap: 0; flex: 1; min-height: 0; overflow: hidden; max-width: 100%; width: 100%; margin: 0; } /* Panels - only show active one on mobile */ #channels-panel, #library-panel, #queue-panel { flex: 1 1 auto !important; width: 100% !important; max-width: 100% !important; min-width: 0 !important; max-height: none; min-height: 0; display: none; overflow: hidden; } #channels-panel.mobile-active, #library-panel.mobile-active, #queue-panel.mobile-active { display: flex; } /* Library panel - fixed header, scrollable content */ #library-panel .panel-tabs { flex-shrink: 0; } #library-panel .panel-views { flex: 1; min-height: 0; min-width: 0; overflow: hidden; width: 100%; } #library-panel .panel-view.active { display: flex; flex: 1; min-height: 0; min-width: 0; overflow: hidden; width: 100%; } #library-panel .panel-header { flex-shrink: 0; } #library { flex: 1; min-height: 0; min-width: 0; overflow-y: auto; width: 100%; } .add-btn { flex-shrink: 0; width: auto; align-self: stretch; } /* Queue panel - fixed header, scrollable content */ #queue-panel #queue-title, #queue-panel #now-playing-bar { flex-shrink: 0; } #queue { flex: 1; min-height: 0; overflow-y: auto; } /* Channels panel - scrollable list */ #channels-panel #channels-list { flex: 1; min-height: 0; overflow-y: auto; } /* Channel list - larger touch targets */ #channels-list .channel-item { padding: 0.4rem; } #channels-list .channel-header { padding: 0.3rem 0; min-height: 44px; } #channels-list .channel-name { font-size: 0.9rem; } #channels-list .btn-rename-channel, #channels-list .btn-delete-channel { opacity: 0.7; font-size: 1rem; padding: 0.3rem; } /* Library/Queue - larger items */ .track { padding: 0.5rem 0.4rem; min-height: 44px; } .track-title { font-size: 0.85rem; } /* Player bar - stacked layout */ #player-bar { flex-direction: column; gap: 0.4rem; padding: 0.4rem; position: sticky; bottom: 0; z-index: 100; margin: 0 -0.3rem -0.3rem -0.3rem; border-radius: 6px 6px 0 0; } #now-playing { width: 100%; display: flex; align-items: center; gap: 0.5rem; } #channel-name { display: none; } #track-name { flex: 1; font-size: 0.85rem; } #player-controls { width: 100%; } #progress-row { gap: 0.5rem; } #status-icon { font-size: 1.2rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; } #btn-prev, #btn-next { font-size: 1rem; padding: 0.3rem; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; } #btn-sync, #btn-mode { font-size: 0.65rem; padding: 0.2rem 0.4rem; } #volume-controls { justify-content: flex-end; gap: 0.3rem; } #btn-stream-only { display: none; } #volume-slider { width: 80px; } /* Hide history button on mobile */ #btn-history { display: none; } /* Toast positioning */ #toast-container { top: auto; bottom: 5rem; left: 0.3rem; right: 0.3rem; } .toast { max-width: none; } /* Login panel */ #login-panel { padding: 1rem; } }