.copy-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #d4023a; /* A vibrant red color */
  color: white;
  border: none;
  border-radius: 13px; /* This creates the rounded, pill shape */
  font-family: Arial, sans-serif; /* A clear, sans-serif font */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
  transition: background-color 0.3s ease; /* Optional: Smooth color transition on hover */
}

.copy-button:hover {
  background-color: #cc003d; /* A slightly darker red for hover effect */
}

.copy-button .icon {
  margin-right: 10px;
  /* You would use an SVG or font icon here */
}

#copy_text_button{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 12px;
    z-index: 10000000000;
    display:none
}


#dynamic-text {
    max-width: 310px; 
    position: absolute;
    top: 20%;
    z-index:100000 !important;
    left:0;right:0;
    margin:auto;
    padding: 15px;
    color:#fff;
    /* border: thin solid #fff !important; */
    border: hidden !important;
    border-radius: 5px;
    font-size: 13px !important;
    /* background-color: rgb(119,2,30, .4); */
}      

.absa_unmute_btns{
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translate(-50%);
    z-index: 1000000 !important;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    width: 35px;
    cursor: pointer;
}

.textinput_bg_transparent{
    color: #333333 !important;
    background: transparent;
    border-radius: 10px;
    border: thin solid #fff;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}

.textinput_bg_transparent::placeholder{
    color: #dcdcdc !important;
}

.text-13 {
    font-size: 13px !important;
}

.text-12 {
    font-size: 12px !important
}


.lh-1-2 {
    line-height: 1.2rem !important;
}

/* .answers-multiplechoice, .btn-info.active{
    width: 100% !important
} */