body {
    background: #121212;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    color: #1db954;
}

#player {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    justify-content: flex-end;
}

#waveform {
    width: 100%;
    height: 100px;
    margin-top: 15px;
    border-radius: 10px;
    background: #2a2a2a;
    cursor: pointer;
}

#timers {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    margin-top: 5px;
}

#controls {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    background: #1db954;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
}

#playlist li.active {
    background: #1db954;
    font-weight: bold;
}

/* Hidden video used for Picture-in-Picture */
#pipVideo {
    width: 1px;
    height: 1px;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.container-player {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: calc(100vh - 120px);
    border: red;
    width: 100%;
}

.playFilter {
    min-width: 400px;
    background: #888888;
    padding: 20px;
    border-radius: 15px;
    height: 100% !important;
    margin-right: 20px;
}

.player-controller {
    display: ruby;
    border: 1px solid #888888;
    background: #121212;
    border-radius: 5px;
    padding: 6px;
}


.tabulator-header {
    margin-left: 0px !important;
}

ul#playlist li {
    cursor: pointer;
    background: #121212;
    min-width: 300px;
    list-style-type: none;
    padding: 10px;
    margin: 2px;
}

ul#playlist {
    padding: 2px;
}
