#abp-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* Abgedunkelter Hintergrund-Overlay */
.abp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.abp-content {
    position: relative;
    z-index: 2;
    padding: 12px;
}

#abp-title {
    display: block;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    text-align: center;
}

.abp-controls {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.abp-controls button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    transition: transform 0.1s ease;
}

.abp-controls button:hover {
    transform: scale(1.2);
}

/* Playlist Styling */
#abp-playlist-view {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    max-height: 120px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#abp-playlist-view li {
    font-size: 11px;
    padding: 6px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#abp-playlist-view li:hover,
#abp-playlist-view li.active {
    background: rgba(255, 255, 255, 0.2);
}

.abp-hidden {
    display: none;
}