|
|
|
|
@ -4056,4 +4056,413 @@ body {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
resize: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Playlist Cards Styling - Premium Glassmorphic Design */
|
|
|
|
|
.playlist-card {
|
|
|
|
|
/* Premium glassmorphic foundation matching search results */
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(26, 26, 26, 0.95) 0%,
|
|
|
|
|
rgba(18, 18, 18, 0.98) 100%);
|
|
|
|
|
backdrop-filter: blur(12px) saturate(1.1);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
|
|
|
margin: 12px 8px;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
/* Premium shadow effect */
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 8px 32px rgba(0, 0, 0, 0.4),
|
|
|
|
|
0 2px 8px rgba(0, 0, 0, 0.2),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
|
|
|
|
|
|
|
|
/* Smooth transitions */
|
|
|
|
|
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card:hover {
|
|
|
|
|
/* Enhanced glassmorphic hover state */
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(30, 30, 30, 0.98) 0%,
|
|
|
|
|
rgba(22, 22, 22, 1.0) 100%);
|
|
|
|
|
backdrop-filter: blur(16px) saturate(1.2);
|
|
|
|
|
border-color: rgba(29, 185, 84, 0.3);
|
|
|
|
|
border-top-color: rgba(29, 185, 84, 0.4);
|
|
|
|
|
|
|
|
|
|
/* More dramatic elevated effect */
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 16px 48px rgba(0, 0, 0, 0.5),
|
|
|
|
|
0 8px 16px rgba(0, 0, 0, 0.3),
|
|
|
|
|
0 0 20px rgba(29, 185, 84, 0.15),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.15);
|
|
|
|
|
|
|
|
|
|
transform: translateY(-4px) scale(1.02);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card.selected {
|
|
|
|
|
/* Selection state with Spotify green accent */
|
|
|
|
|
border-color: rgba(29, 185, 84, 0.5);
|
|
|
|
|
border-top-color: rgba(29, 185, 84, 0.6);
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(29, 185, 84, 0.08) 0%,
|
|
|
|
|
rgba(26, 26, 26, 0.98) 50%);
|
|
|
|
|
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 12px 36px rgba(0, 0, 0, 0.4),
|
|
|
|
|
0 4px 12px rgba(0, 0, 0, 0.25),
|
|
|
|
|
0 0 24px rgba(29, 185, 84, 0.25),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.playlist-card-main {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card-content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0; /* Prevents text overflow issues */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card-name {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card-info {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #b3b3b3;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card-status {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
|
|
|
|
|
|
/* Glassmorphic badge styling */
|
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 2px 8px rgba(0, 0, 0, 0.2),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-never-synced {
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(128, 128, 128, 0.3) 0%,
|
|
|
|
|
rgba(96, 96, 96, 0.4) 100%);
|
|
|
|
|
color: #e0e0e0;
|
|
|
|
|
border-color: rgba(128, 128, 128, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-synced {
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(29, 185, 84, 0.3) 0%,
|
|
|
|
|
rgba(24, 158, 72, 0.4) 100%);
|
|
|
|
|
color: #1ed760;
|
|
|
|
|
border-color: rgba(29, 185, 84, 0.3);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 2px 8px rgba(29, 185, 84, 0.2),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-needs-sync {
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(255, 149, 0, 0.3) 0%,
|
|
|
|
|
rgba(230, 130, 0, 0.4) 100%);
|
|
|
|
|
color: #ffb84d;
|
|
|
|
|
border-color: rgba(255, 149, 0, 0.3);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 2px 8px rgba(255, 149, 0, 0.2),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card-actions {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card-actions button {
|
|
|
|
|
/* Premium glassmorphic button matching search results */
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(29, 185, 84, 0.9) 0%,
|
|
|
|
|
rgba(24, 158, 72, 0.95) 100%);
|
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
|
border: 1px solid rgba(29, 185, 84, 0.3);
|
|
|
|
|
border-top: 1px solid rgba(29, 185, 84, 0.5);
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
|
|
|
|
/* Premium shadow effect */
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 4px 16px rgba(29, 185, 84, 0.25),
|
|
|
|
|
0 2px 4px rgba(0, 0, 0, 0.2),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.2);
|
|
|
|
|
|
|
|
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-card-actions button:hover {
|
|
|
|
|
/* Enhanced hover state */
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(29, 185, 84, 1.0) 0%,
|
|
|
|
|
rgba(24, 158, 72, 1.0) 100%);
|
|
|
|
|
border-color: rgba(29, 185, 84, 0.6);
|
|
|
|
|
border-top-color: rgba(29, 185, 84, 0.8);
|
|
|
|
|
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 6px 20px rgba(29, 185, 84, 0.35),
|
|
|
|
|
0 3px 6px rgba(0, 0, 0, 0.25),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
|
|
|
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sync-progress-indicator {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #1db954;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Playlist Details Modal - Clean Premium Design */
|
|
|
|
|
.playlist-modal {
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
width: 90%;
|
|
|
|
|
max-height: 85vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
/* Premium glassmorphic foundation */
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
rgba(20, 20, 20, 0.95) 0%,
|
|
|
|
|
rgba(12, 12, 12, 0.98) 100%);
|
|
|
|
|
backdrop-filter: blur(20px) saturate(1.2);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.18);
|
|
|
|
|
|
|
|
|
|
/* Premium shadow effect */
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 20px 60px rgba(0, 0, 0, 0.6),
|
|
|
|
|
0 8px 32px rgba(0, 0, 0, 0.4),
|
|
|
|
|
0 0 40px rgba(29, 185, 84, 0.1),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.15);
|
|
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 24px 28px 16px 28px;
|
|
|
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-header-content h2 {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin: 0 0 8px 0;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-quick-info {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-track-count {
|
|
|
|
|
color: #1ed760;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-owner {
|
|
|
|
|
color: #b3b3b3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-close {
|
|
|
|
|
color: #b3b3b3;
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
margin: -4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-close:hover {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
transform: scale(1.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-body {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 0 28px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-description {
|
|
|
|
|
color: #e0e0e0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
background: rgba(29, 185, 84, 0.05);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
border-left: 3px solid #1ed760;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-tracks-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-tracks-list {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
margin: 0; /* Negative margin for better scrolling */
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Custom scrollbar for playlist tracks list */
|
|
|
|
|
*::-webkit-scrollbar {
|
|
|
|
|
width: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-track {
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgba(255, 255, 255, 0.3);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border: 2px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-track-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-track-item:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-track-number {
|
|
|
|
|
width: 32px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #666666;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-track-info {
|
|
|
|
|
flex: 1;
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-track-name {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
margin-bottom: 3px;
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-track-artists {
|
|
|
|
|
color: #b3b3b3;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-track-duration {
|
|
|
|
|
color: #b3b3b3;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
min-width: 40px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-footer {
|
|
|
|
|
padding: 20px 28px 24px 28px;
|
|
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-btn {
|
|
|
|
|
padding: 12px 24px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
border: none;
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-btn-secondary {
|
|
|
|
|
background: rgba(255, 255, 255, 0.08);
|
|
|
|
|
color: #e0e0e0;
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-btn-secondary:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.12);
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-btn-primary {
|
|
|
|
|
background: linear-gradient(135deg, #1db954, #1ed760);
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playlist-modal-btn-primary:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
|
|
|
|
|
}
|