.media-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-top: 2px solid;
    border-image: linear-gradient(to left, #743ad5, #d53a9d) 1;
    z-index: 1000;
}

.controls-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.controls ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.controls li {
    display: flex;
    align-items: center;
}
.controls a {
    display:inline-block;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.25);
    padding-top: 5px;
    padding-bottom: 0px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 300;
}

input[type=range] {
    -webkit-appearance: none;
    background-color: #A7A7A7;
    height: 1px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #666;
    opacity: 0.5;
    width: 5px;
    height: 10px;
}

.volume-bar {
    position: relative;
    top: 0px;
}

.progress-bar {
    border: 1px solid #ccc;
    width: 100%;
    max-width: 45%;
    padding-top: 0;
}

.progress-bar, .track-info {
    display: block;
    text-align: center;
}

#progressOut {
    width: 100%;
    height: 2px;
    padding: 1px;
    position: relative;
    overflow: hidden;
}

#progressIn {
    position: relative;
    height: 100%;
    bottom: 0px;
    width: 0px;
    background: #E2E2E2;
}

.time {
    position: absolute;
    background: #5C5C5C;
    right: 0px;
    height: 2px;
    width: 2px;
}

.track-time {
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 300;
}

.fa-pause, .fa-play, .fa-random {
    color: rgba(255, 255, 255, 0.25);
}

.fa-pause:hover, .fa-play:hover, .fa-random:hover {
    color: rgba(255, 255, 255, 0.75);
}

.play-btn:hover, .pause-btn:hover, .next-btn:hover {
    cursor: pointer;

}

.play-btn:active, .pause-btn:active, .next-btn:active {
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    text-shadow: 1px 1px 5px #888;
    font-size: 10pt;
}