/* PaperMCQs MCQ voice reader */
.pm-mcq-question-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:15px;
}
.pm-mcq-question-row .mcq-question{
  flex:1 1 auto;
  min-width:0;
  margin-bottom:0!important;
}
.pm-mcq-voice-btn{
  flex:0 0 auto;
  width:36px;
  height:36px;
  border:1px solid #138a4b;
  border-radius:50%;
  background:#fff;
  color:#08783e;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  cursor:pointer;
  transition:background-color .18s ease,color .18s ease,border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.pm-mcq-voice-btn:hover,
.pm-mcq-voice-btn:focus-visible{
  background:#08783e;
  color:#fff;
  border-color:#08783e;
  box-shadow:0 0 0 3px rgba(8,120,62,.12);
  outline:none;
}
.pm-mcq-voice-btn:active{transform:scale(.96)}
.pm-mcq-voice-btn.is-speaking{
  background:#08783e;
  color:#fff;
  border-color:#08783e;
}
.pm-mcq-voice-btn i{font-size:1.05rem;line-height:1}
.pm-mcq-voice-btn:disabled{opacity:.5;cursor:not-allowed}
@media(max-width:575.98px){
  .pm-mcq-question-row{gap:8px}
  .pm-mcq-voice-btn{width:34px;height:34px}
}
