.drop-zone { border: 2px dashed var(--border-color); border-radius: 8px; padding: 25px 20px; text-align: center; cursor: pointer; transition: border-color 0.2s; background: #f9fafb; margin-bottom: 20px; }
			.drop-zone:hover { border-color: var(--primary); background: #fdfdff; }
			.drop-zone p { font-size: 0.9rem; color: #4b5563; }

			.playlist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; max-height: 250px; overflow-y: auto; }
			.track-item { display: flex; align-items: center; justify-content: space-between; background: #f8fafc; border: 1px solid #e2e8f0; padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; }
			.track-info { display: flex; align-items: center; gap: 10px; overflow: hidden; }
			.track-name { font-weight: 500; color: #374151; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; }
			
			.track-actions { display: flex; gap: 5px; }
			.btn-icon { background: #e5e7eb; border: none; padding: 6px 10px; border-radius: 6px; cursor: pointer; font-size: 0.8rem; font-weight: 600; color: #374151; transition: background 0.2s; }
			.btn-icon:hover { background: #d1d5db; }
			.btn-danger-icon { background: #fee2e2; color: #dc2626; }
			.btn-danger-icon:hover { background: #fecaca; }

			.controls { display: flex; gap: 10px; margin-top: 15px; }
			.btn { flex: 1; padding: 12px; border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background-color 0.2s; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
			.btn-primary { background-color: var(--primary); color: white; }
			.btn-primary:hover { background-color: var(--primary-hover); }
			.btn-secondary { background-color: #e5e7eb; color: #374151; }
			.btn-secondary:hover { background-color: #d1d5db; }

			.loading { text-align: center; color: #6b7280; font-size: 0.9rem; margin: 20px 0; font-style: italic; display: none; }
			.empty-state { text-align: center; color: #9ca3af; font-size: 0.85rem; padding: 15px; border: 1px dashed #e5e7eb; border-radius: 8px; margin-bottom: 20px; }