/* Vertical stack container */
.footer-player-container {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #111; /* Dark footer background */
    color: white;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px 15px;
    box-sizing: border-box;
    gap: 4px;
}

/* Player takes full width on the top row */
.plyr-wrapper {
    width: 100%;
}

.plyr--audio .plyr__controls {
    background: transparent !important;
    padding: 0 !important;
}

/* Single line metadata styling */
.track-info {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    color: #ccc;
}

.song-title {
    font-weight: bold;
    color: #fff;
}

.separator {
    margin: 0 5px;
    color: #666;
}

/* Lava Orange accent for the progress bar */
:root {
    --plyr-color-main: #ff5722;
}