.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;
  }
}