.jukebox {
    position: fixed;
    top: 5px;
    left: 5px;
    width: 180px;
    background: #8c8c8c;
    background: linear-gradient(180deg, rgba(140, 140, 140, 1) 0%, rgba(57, 57, 57, 1) 36%, rgba(26, 26, 26, 1) 37%, rgba(0, 0, 0, 1) 100%);
    border: 2px solid black;
    border-radius: 15px;
    padding: 10px;
    z-index: 9999;
    font-family: georgia;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.jb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.jb-title {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.jb-controls {
    display: flex;
    gap: 5px;
}

.button {
    cursor: url(pixels/VIRUXXX-chibi-select.png), auto;
    background: none;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.jb-select {
    margin-bottom: 8px;
}

.jb-select select {
    cursor: url(pixels/VIRUXXX-chibi-select.png), auto;
    width: 100%;
    padding: 3px;
    font-family: georgia;
    border: 1px solid #f1ead1;
    border-radius: 3px;
    color: black;
    font-size: 12px;
    background-color: #e4dbba;
    background-image: radial-gradient(#f4edd3, #f1ead1, #d7cdab);
}

.jb-info {
    font-size: 12px;
    color: white;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 600px) {
  .jukebox {
    filter: opacity(0.5);
    font-size: 10px;
    width: 40%;
    bottom: 5px;
    top: unset;
  }
}

@media screen and (max-width: 600px) {
  .jukebox:hover {
    filter: unset;
  }
}
