.rt-detail{
  display: flex;
  gap: 0.5rem;
  align-items: center;

}

.rt-value{
  background: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid #d1d5db;
  display: block;
  flex: 1;
  min-height: 4ch;

  &.disabled {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #d1d5db;
  }

  &.area{
    min-height: 15ch;
  }
}

.charges_summary{
  display: flex;
  place-items: end;
  flex-direction: column;
  padding-right: 4rem;

  .box {
    h3 {
      text-decoration: underline;
      text-align :center;
    }
  
    ul {
      margin-left: 0;
      padding-left: .5rem;
      background: #eee;
  
    }
  }

}