/* --- Player Container --- */
.sn-player {
    background: #000;
    color: #fff;
    padding: 22px;
    border-radius: 14px;
    width: 100%;
    max-width: 520px;
    margin: 30px auto;
    box-shadow: 0 0 25px rgba(0,0,0,0.9);
    font-family: Arial, sans-serif;
    border: 1px solid #222;
}

/* --- Track Info --- */
.sn-player-info {
    margin-bottom: 14px;
}

.sn-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.sn-meta {
    font-size: 14px;
    color: #aaa;
}

/* --- Buttons --- */
.sn-controls {
    display: flex;
    justify-content: space-between;
    margin: 18px 0;
}

.sn-btn {
    background: #111;
    border: 1px solid #333;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    font-size: 16px;
}

.sn-btn:hover {
    background: #222;
    border-color: #555;
}

/* --- Favoriten Button --- */
.sn-fav.active {
    color: gold;
}

/* --- Progress Bar --- */
.sn-progress input {
    width: 100%;
    appearance: none;
    height: 6px;
    border-radius: 4px;
    background: #333;
    outline: none;
}

.sn-progress input::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/* --- Playlist & Tracklist Container --- */
#sn-playlist,
#sn-tracklist {
    margin: 30px auto;
    max-width: 520px;
    background: #000;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

/* --- Titel --- */
.sn-playlist-title {
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    color: #fff;
    border-bottom: 1px solid #222;
}

/* --- Playlist & Tracklist Items --- */
.sn-playlist-item,
.sn-track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #111;
}

.sn-playlist-item:hover,
.sn-track-item:hover {
    background: #111;
}

.sn-playlist-name {
    color: #fff;
    font-size: 15px;
    flex: 1;
}

/* --- Buttons in Playlist --- */
.sn-playlist-buttons {
    display: flex;
    gap: 10px;
}

.sn-playlist-btn {
    background: #111;
    border: 1px solid #333;
    padding: 6px 10px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.sn-playlist-btn:hover {
    background: #222;
    border-color: #555;
}

/* --- Add Button --- */
.sn-add-btn {
    background: #0a0;
    border: 1px solid #0f0;
    padding: 6px 10px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.sn-add-btn:hover {
    background: #0c0;
    border-color: #0f0;
}

/* --- GENRE & BAND TITEL (aufklappbar) --- */
.sn-genre-title {
    font-size: 18px;
    font-weight: bold;
    color: #0f0;
    padding: 12px 20px;
    border-bottom: 1px solid #222;
    margin-top: 20px;
    text-align: left;
    cursor: pointer;
}

.sn-band-title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #111;
    text-align: left;
    margin-top: 10px;
    cursor: pointer;
}

/* --- Aufklappbare Inhalte --- */
.sn-genre-content,
.sn-band-content {
    display: none;
    padding-left: 10px;
}

.sn-genre-content.open,
.sn-band-content.open {
    display: block;
}
