 .podcast {
	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 {
      position: relative;
      width: 100%;
  }

	.barCanvas {
		width: 100%;
		height: 250px;
		display: block;
		background: #d3d3d3; /* optional */
		cursor: pointer;
	}


.canvasContainer::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 70px;
    color: white;

    pointer-events: none; /* lets clicks pass through to canvas */
	transition: opacity 0.2s ease;
}

.canvasContainer.playing::after {
    opacity: 0;
}

  .audio_controls {
    position: relative;
	width: 80%;
    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: 80%;
    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: 0px;
	 background: white;
	 cursor: pointer;
}