div#animation {
    justify-content: center;
    display: flex;
}
.hide-class{
    display:none!important;
}
 .text-rewriter-container {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 4px 8px 0 rgba(100, 100, 100, 0.2);
    margin-top: 30px;
  }
  .form-select, .form-control {
    border: 1px solid #d1d3e2;
    border-radius: 10px;
    transition: border-color 0.15s;
  }
  .form-select:focus, .form-control:focus {
    border-color: #bac8f3;
    box-shadow: none;
  }
  .form-select:hover, .form-control:hover {
    border-color: #a0b4e4;
  }
  .icon-button {
    background: #f2f2f2;
    border: none;
    padding: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 0.375rem;
    color: #6c757d;
    transition: color 0.15s, background-color 0.15s;
  }
  .icon-button:hover {
    color: #0d6efd;
    background-color: #e2e5ec;
  }
  .text-rewriter-container .btn-primary {
    border-radius: 10px;
    padding-left: 30px;
    padding-right: 30px;
    transition: background-color 0.15s, box-shadow 0.15s;
  }
  .text-rewriter-container .btn-primary:hover {
    background-color: #2653d4;
    box-shadow: 0 0 0 2px #bac8f3;
  }
  .word-count {
    color: #6c757d;
    font-size: 14px;
  }
  .btn-rewrite{
    border: none;
    padding: 6px 15px;
    font-size: 15px;
    font-weight: 600;
    background: #1e3c72;  
    background: -webkit-linear-gradient(to top, #2a5298, #1e3c72); 
    background: linear-gradient(to top, #2a5298, #1e3c72); 

  }
  @media (min-width: 992px) {
    .textarea-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 20px;
    }
  }
  .icon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  .textarea-row > div {
    position: relative;
  }
  .textarea-row textarea {
    min-height: 150px;
  }
  .option-title {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  .form-control[readonly] {
    background-color: #ffffff !important;
    opacity: 1;
  }
  button#trash-btn:hover{
  color: red;
  }