 #audio_play_container {
	display: flex;
  flex-direction: column; /* Stacks children vertically */
  align-items: center;    /* Centers children horizontally */
  justify-content: center; /* Centers the stack vertically (requires parent height) */
  }


  #canvasContainer {
    width: 60%;
    margin-top: 20px;
	margin-bottom: 25px;
  }

  canvas {
    width: 100%;
    height: 250px;
    background: #fff;
    border: 1px solid #ccc;
	border-radius: 5px;
  }

  #audio_controls {
    position: relative;
	width: 70%;
    margin-top: 20px;
	margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
	padding: 10px;
	padding-left: 60px;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
  }

  #playBtn {
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
	border-radius: 5px;
  }

  #progressContainer {
    width: 100%;
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
  }

  #progressBar {
    height: 80%;
    width: 0%;
    background: #2196F3; /* blue progress */
    border-radius: 5px;
    transition: width 0.1s linear;
  }

  #playBtn, #timer {
	width: 200px;
  }

  #icon_head_phone {
	 position: absolute;
	 width: 50px;
	 left: 5px;
	 top: 5px;
	 background: white;
	 cursor: pointer;
}