/* (PART A) WHOLE PAGE */
* {
    /*font-family: Arial, Helvetica, sans-serif;*/
    box-sizing: border-box;
}

/*body, html {
    background: #203274;
}*/

#player, #playTimeD, #playButtons {
    display: flex;
}

/* (PART B) WRAPPER & LAYOUT */
#player {
    flex-wrap: wrap;
    min-width: 300px;
    max-width: 1000px;
    padding: 30px;
    border-radius: 10px;
    /*background: #fff;*/
    background-color: rgba(255, 255, 255, 0.3); /* Bootstrap's primary color with 70% opacity */
    font-family: Arial, Helvetica, sans-serif;
}

/* (PART C) CURRENT SONG IMAGE */
#playImg {
    width: 120px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}

/* (PART D) CURRENT SONG NAME & CONTROLS */
/* (D1) WRAPPER & SHARED */
#playControls {
    width: calc(100% - 140px);
    padding-left: 5px;
}

#player input[type="range"] {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    box-shadow: none;
    accent-color: cornflowerblue;
}

/* (D2) SONG NAME */
#playName {
    font-size: 1.5rem;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* (D3) SONG TIME */
#playTimeN, #playTimeT {
    width: 50%;
    font-size: 14px;
}

#playTimeR {
    width: 100%;
}

#playTimeT {
    text-align: right;
}

/* (D4) ICOMOON - https://icomoon.io/ */
@font-face {
    font-family: icomoon;
    src: url(../fonts/icomoon.eot?d3ybsy);
    src: url(../fonts/icomoon.eot?d3ybsy#iefix) format('embedded-opentype'),url(../fonts/icomoon.ttf?d3ybsy) format('truetype'),url(../fonts/icomoon.woff?d3ybsy) format('woff'),url(../fonts/icomoon.svg?d3ybsy#icomoon) format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: block
}

[class*=" icon-"], [class^=icon-] {
    color: #515151;
    font-family: icomoon !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-play3:before {
    content: "\ea1c"
}

.icon-pause2:before {
    content: "\ea1d"
}

.icon-previous2:before {
    content: "\ea23"
}

.icon-next2:before {
    content: "\ea24"
}

.icon-volume-high:before {
    content: "\ea26"
}

.icon-volume-mute2:before {
    content: "\ea2a"
}

/* (D5) CONTROL BUTTONS */
#playButtons {
    margin-top: 10px;
    align-items: center;
}

#playLast, #playTog, #playNext, #playVolI {
    cursor: pointer;
}

#playLast, #playTog, #playNext {
    font-size: 32px;
    flex-grow: 1;
}

#playVolI {
    font-size: 16px;
    margin-right: 15px;
}

#playVolR {
    flex-shrink: 1;
    max-width: 30px;
}

/* (PART E) PLAY LIST */
#playList {
    width: 100%;
    margin-top: 20px;
}

    #playList div {
        padding: 1px;
        cursor: pointer;
    }

        #playList div.current {
            font-weight: 700;
            color: #1e1e1e;
        }
/*#playList div:nth-child(odd) { background: #f2f2f2; }
*/
ul.ulaud1 li:nth-child(odd) {
    background-color: #EBEBEB; /* Light grey or your desired color */
}

div.pldiv {
    font-size: 1.25rem;
}

div.pldiv2 {
    font-size: 1.25rem;
}

@media (min-width: 768px) { /* Adjust breakpoint as needed */
    div.pldiv {
        width: 92%;
        font-size: 1rem;
       /* background-color: aqua;*/
        justify-content: center;
    }

    div.pldiv2 {
        /* display: flex;*/
        width: 83%;
        font-size: .85rem;
        justify-content: flex-end;
        margin-top: .5%;
    }
}

@media (max-width: 767.98px) { /* Adjust breakpoint as needed */
    #player {
        width: 85%;
    }
    div.pldiv {
        width: 99%;
        font-size: 1rem;
       /* background-color: aqua;*/
        justify-content: center;
    }

    div.pldiv2 {
        /* display: flex;*/
        width: 93%;
        font-size: 1rem;
        justify-content: flex-end;
    }
}

@media (max-width: 576px) { /* Styles for tablets and larger */
    #player {
        width: 85%;
    }
    div.pldiv {
        width: 96%;
        font-size: 1.5rem;
       /* background-color: aqua;*/
        justify-content: center;
    }

        div.pldiv i.myicon {
            /*width:96%;*/
            font-size: .6rem;
            /*background-color: aqua;*/
        }

    div.pldiv2 {
        display: flex;
        width: 96%;
        font-size: 1.25rem;
        justify-content: flex-start;
    }
}
