#mixup-player {
    position: relative; /* ensures z-index stacking works reliably */
}
/*
#mixup-player  #mixup-player-scrubber {
    background-color: #FCFCFC;
    border-radius: 8px;
    width: 100%; /* Ensure the scrubber spans the full width 
    height: 12px; /* Explicit height for visibility 
    margin: 7px;
    border: 1px solid #AAA;
}
*/
#mixup-player-ui {
	position: relative;
    background-color: #EDEDED;
    margin-bottom: 0;
    text-align: center;
    padding: 1rem;
}

#mixup-player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

#mixup-player-button-container {
    text-align: center;
}

#mixup-player-volume-container {
    min-width: 76px;
    text-align: left;
}

#mixup-player-volume-container .flex {
    display: flex;
    align-items: center;
}

#mixup-player-volume-control-container, #mixup-player-volume-control {
    height: 8px;
}

#mixup-player-volume-control-container {
    position: relative;
    display: inline-block;
    background-color: #BBB;
    width: 50px;
    margin: 0 0.25rem 0 0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

#mixup-player-volume-control {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #8EE6FD;
    display: inline-block;
}

#mixup-player-time-display {
    min-width: 76px;
}

/*
	added below to make scrubber visible (added portion ends at "end mwic add" 
NB: moved these to martin_redux so that Chrome would acknowledge their existence 


#mixup-player #mixup-player-scrubber,
#mixup-player #mixup-player-loaded,
#mixup-player #mixup-player-position,
#mixup-player #mixup-player-scrubber-clicker {
    position: relative;
height: 13px; 
width: 100%; 
}

#mixup-player #mixup-player-scrubber {
    position: relative; 
    background-color: #EEE;
    margin: 1rem 0;
    height: 13px; 
    border-radius: 6px;
    overflow: hidden; 

}

#mixup-player #mixup-player-loaded {
    position: absolute; /* Stacks within the scrubber
    top: 0;
    left: 0;
    width: 50%; /* Represents the buffered portion 
    background-color: #BBB;
    height: 13px;
    z-index: 1; /* Places it behind the position indicator 
}

#mixup-player #mixup-player-position {
    position: absolute; /* Stacks within the scrubber 
    top: 0;
    left: 0;
    width: 10%; /* Represents the played portion 
/*    background-color: #4CAF50; 
background-color: #518BA1; 
    height: 13px; 
    z-index: 2; /* Places it above the loaded portion 
}

#mixup-player #mixup-player-scrubber-clicker {
  outline: 2px solid red !important;
}
*#mixup-player #mixup-player-scrubber-clicker {
    position: absolute; /* Stacks within the scrubber 
    top: 0;
    left: 0;
    width: 100%; /* Covers the full scrubber area for interaction 
    height: 13px;
/*    background-color: transparent; /* Invisible but clickable 
    background-color: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(0, 0, 0, 0.1); /* Ensure visibility 
    z-index: 3; /* Places it above all other elements 
    cursor: pointer; /* Indicates interactivity 
}

 end mwic add */ 
#mixup-playlist {
    width: 100%;
    border-collapse: collapse;
}

#mixup-playlist td {
    padding: .25rem .5rem;
}

#mixup-playlist tr:nth-child(even) td {
    background-color: #F5F5F5;
}

#mixup-playlist .mixup-current-track td,
#mixup-playlist tr.mixup-current-track:nth-child(even) td {
    background-color: #EFFBFE;
}

a.mixup-button, a.mixup-track-button {
    display: inline-block;
    cursor: pointer;
    color: #555;
    font-size: 1rem;
    line-height: 2rem;
    vertical-align: top;
}

a.mixup-track-button {
    line-height: 2rem;
}

a.mixup-button:hover, a.mixup-button:active,
a.mixup-track-button:hover, a.mixup-track-button:active {
    color: #000;
}

#mixup-player-playpause {
    font-size: 2rem;
    margin: 0 .25rem;
}

a.menuup_hook, a.info_button {
    display: inline-block;
    cursor: pointer;
}

.nowrap {
    white-space: nowrap;
}
.center {
    text-align: center;
}
