li {
  text-align: left;
  line-height: 16px;
  font-family: Avenir, 'Times New Roman', Times, serif;
  font-size: 10px;
  font-weight: normal;
  white-space: nowrap;
  color: #444;
}

#menu-categories .player {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 180px;
    background-color: #fcfbfc;
    padding: 5px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    overflow: hidden;
  }
  
  #customAudio {
    width: 100%;
    height: 30px;
    margin-bottom: 5px;
    border: none;
  }
  
  .controls {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .controls button {
    margin: 5px 0;
    padding: 5px;
    font-size: 12px;
    width: 100%;
  }
  
  #playPauseBtn {
    width: 80px;
    text-align: center;
    padding: 5px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .playlist-container {
    position: relative;
    width: 100%;
    overflow: visible;
  }
  
  .playlist-button {
    padding: 5px 10px;
    font-size: 12px;
    width: 100%;
  }
  
  .playlist {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 130px;
    background-color: #fcfbfc;
    border: 1px solid #ddd;
    list-style: none;
    padding: 5px;
    margin: 0;
    min-width: 150px;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .playlist li {
    padding: 2px 0;
    cursor: pointer;
  }
  
  .playlist li:hover {
    background-color: #f0f0f0;
  }
  
  .playlist-container:hover .playlist {
    display: block;
  }
  
  .record {
    cursor: pointer;
    font-weight: bold;
  }
  
  .songs {
    display: none;
    padding-left: 20px;
  }
  
  .record:hover .songs {
    display: block;
  }
  
  .record.active > .songs {
    display: block;
    background-color: #e0e0e0;
  }
  
  .record.active {
    color: #555;
  }
  
  .songs li.active {
    color: #555;
    font-weight: bold;
  }
  
  #audioControls {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
i {
    width: 16px; /* Set a fixed width for the icon */
    text-align: center;
  }
  button {
    /* padding: 8px; */
    font-size: 10px;
    cursor: pointer;
    border: 0px transparent;
    /* border: 0px solid #ddd; */
    background-color: #f8f9fa;
    /* border-radius: 5px; */
    transition: all 0.2s ease;
  }
  
  button:hover {
    background-color: #fff8cc;
    /* border: 1px solid #ddd; */
    /* transform: scale(1.05); */
  }
  
  button i {
    color: #495057;
  }

  .fa-compact-disc {
  position: absolute;
    top: 2px;
    left: 2px;
}

.playlist .songs {
  list-style: none;
  padding-left: 20px;
}

.playlist .songs li {
  position: relative;
  padding: 5px 0;
  transition: background-color 0.2s ease;
}

.playlist .songs li::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #bbb;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.playlist .songs li:hover {
  background-color: #f0f0f0;
}

.playlist .songs li:hover::before {
  background-color: #666;
}

.playlist .songs li.active::before {
  background-color: var(--active-color, #3498db);
  width: 5px;
  height: 5px;
}

@media screen and (max-device-width: 1024px) and (orientation: portrait) {
  #menu-categories .player {
    max-width: 140px;
  }
}