.left-box {
      border-radius: 12px;
    }
  
    .right-box {
      max-height:0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: width 0.3s ease, max-height 0.2s ease, opacity 0.2s ease;
      margin-top: 30px;
    }
  
    .transcription-text {
      display: flex;
      flex-direction: column;
      min-height: 0;
      max-height: 100%;
      opacity:0;
      transition: opacity 0.2s ease;
      border: 1px solid #D8D8D8;
      border-radius: 12px;
      padding: 7px;
      position: relative;
    }
  
    .transcription-text .close-icon {
      position: absolute;
      right: .5rem;
      top: .8rem;
      padding: .5rem;
      line-height: 0;
      font-size: 1.5em;
      color: #6B6B6B;
      cursor: pointer;
    }
  
    .transcription-text .close-icon:hover {
      color:inherit;
    }
  
    .scroll-area {
      overflow-y: auto;
      scrollbar-width: thin;
    }
  
    .transcriptPluginContainer.transcript-visible .left-box {
      width:100%;
      transition: width 0.3s ease;
    }
  
    .transcriptPluginContainer.transcript-visible .right-box {
      max-height: 30vh;
      transition: width 0.3s ease, max-height 0.2s ease, opacity 0.2s ease;
    }
  
    .transcriptPluginContainer.transcript-visible .transcription-text {
      opacity:1;
      transition: opacity 0.2s ease;
    }
  
    @media(min-width:1000px){
      .transcriptPluginContainer {
        display:flex;
      }
  
      .left-box {
        display: flex;
        flex-direction: column;
        transition: width 0.3s ease .2s;
        width:100%;
      }
  
      .right-box {
        display: flex;
        max-height: unset;
        flex-direction: column;
        transition: width 0.3s ease .2s;
        width:0;
        margin-top: 0;
      }
  
      .transcriptPluginContainer.transcript-visible .left-box {
        width: 67%;
      }
  
      .transcriptPluginContainer.transcript-visible .right-box {
          max-height: unset;
          width: 33%;
      }
      .transcription-text {
          flex-basis: 0px;
          flex-grow: 1;
          margin-left: 30px;
      }
      .transcriptPluginContainer.transcript-visible .transcription-text {
      transition: opacity 0.2s ease .3s;
      }
    }
  
  
  #transcriptionContent {
    line-height: 1.5;
    font-size: 14px;
  }
  
  .timestamp {
    display: block;
    padding: 3px 6px;
    border-radius: 6px;
    background-color: transparent;
    color:inherit;
  }
  
  .timestamp:hover {
    background-color: #cceef7;
    color: #092e86;
    transition: background-color 0.3s ease, color .3s ease;
  }
  
  .timestamp .time {
    padding: 3px 6px;
    border-radius: 6px;
    background-color: #d8e4ff;
    font-size: .8em;
    font-weight: bold;
    color: #092e86;
  }
