body { 
    background:#f8f9fa; 
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
    }

.song.locked{
    opacity:.45;
    filter:grayscale(1);
    cursor:not-allowed;
    //border-left: 4px solid #dc3545;
}

.song.locked::after{
    content:"⛔";
    float:right;
    
}

.filtered {
  cursor: not-allowed;
}

.list-group-item {
  /*padding:1rem;*/
  font-size:1.05rem;
  cursor:grab;
}

.list-group-item:hover{
 background:#E2E3E5;
}

#trash {
  border:2px dashed #999;
}

.cover{
 width:48px;
 height:48px;
 object-fit:cover;
 border-radius:8px;
 background:#111;
}

.cover-lg{
 width:96px;
 height:96px;
 object-fit:cover;
 border-radius:10px;
 background:#111;
}

.now-playing-box{
 border:2px dashed #ff3366);
 padding:15px;
 background:#E2E3E5;
 border-radius:8px;
}

.sam-header{
 background:#E2E3E5;
 padding:15px;
 /*border-radius:10px;*/
}

.sam-logo{height:45px}
.sam-title{margin:0}
.sam-slogan{color:#aaa}

.now-playing{
 animation:pulse 2s infinite;
}

@keyframes pulse{
 0%{box-shadow:0 0 0 0 rgba(255,51,102,.6)}
 70%{box-shadow:0 0 0 14px rgba(255,51,102,0)}
 100%{box-shadow:0 0 0 0 rgba(255,51,102,0)}
}

.queue-item {
  background: #ffffff;
  border-radius: 8px;
  margin: 6px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  cursor: grab;
}

.queue-item:active {
  cursor: grabbing;
}

.queue-cover-wrap {
  width: 56px;
  height: 56px;
}

.queue-cover {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}

/* Time badge */
.queue-time {
  position: absolute;
  top: -6px;
  left: -16px;
  background: #1c1c1c;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.queue-title {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}

.queue-artist {
  font-size: 0.85rem;
  color: #555;
}

/* Ruimte boven eerste item */
#queue {
  padding-top: 10px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}