#music-visualizer-popup {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  padding: 5px;
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  width: auto;
}

#visualizerCanvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%; /* làm tròn hình elip */
  object-fit: cover;
  background: transparent;
}
#music-visualizer-popup {
  overflow: hidden;           /* ẩn phần dư ngoài elip */
  border-radius: 50%;         /* làm popup thành hình tròn hoặc elip */
  background: transparent;    /* không có nền mờ */
  padding: 0;                 /* bỏ khoảng trắng */
}


