#global-player-root {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    z-index: 1000;
    border-top: 1px solid #222;
    font-family: sans-serif;
}

.player-inner {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.player-left img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.player-center {
    flex: 1;
    padding: 0 20px;
}

.player-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.progress-container {
    height: 4px;
    background: #222;
    margin-top: 8px;
    width: 100%;
}

#progress-bar {
    height: 4px;
    width: 0%;
    background: white;
}