  #narratorControls {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* or center if you want center alignment */
    gap: 3px; /* reduce or increase gap between items */
    margin: 0px;
    border-radius: 8px;
    border: 1px solid red;
    background-color: #bfbf00;
    max-width: 100%;
  }
  #narratorControls select,
  #narrateBtn {
    font-size: 1.5rem;
    padding: 12px 10px;
    background-color: red; /*#007bff;*/
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    min-width: 100%;
    max-width: 100%;
  }
  #narrateBtn:hover {
    background-color: #0056b3;
  }
  #speedControl {
      border: none;
    /*min-width: 180px;
    max-width: 180px;*/
  }