.twofa-box {
    display: flex;
    padding: 23px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid rgb(221, 221, 221);
}

.wrap-domains {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 15px 0px 15px;
}

.domain-box {
    margin-bottom: 0px;
}

.srv_value {
    display: grid;
    grid-template-columns: 1fr 1fr 3fr;
    gap: 10px;
}

.code {
  margin-block: 20px;
  padding: 16px;
  background: #f7f7f9;
  border: 1px solid #e1e1e8;
  border-radius: 4px;
  overflow-x: auto;
}

.code-content {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.record-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-block: 12px;
}

.record-types li {
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  color: #333;
}

.label.view-ticket {
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.view-ticket.onhold, .view-ticket.department, .view-ticket.staff {
  background-color: #DDF2FF;
  border: solid 1px #0071BC;
  color: #0071BC;
}
.view-ticket.customer-reply {
  background-color: #F5F5F5;
  border: solid 1px #9E9E9E;
  color: #9E9E9E;
}
.view-ticket.open, .view-ticket.answered, .view-ticket.low, .view-ticket.customer {
  background-color: #D6E9C6;
  border: solid 1px #3C763D;
  color: #3C763D;
}
.view-ticket.closed, .view-ticket.medium {
  background-color: #FFF8E7;
  border: solid 1px #D99840;
  color: #D99840
}
.view-ticket.high {
  background-color: #FEF2F2;
  border: solid 1px #C53030;
  color: #C53030;
}

.ticket-info-item {
  margin-bottom: 16px;
}

.ticket-info-item-label {
  font-weight: 600;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
}

.ticket-info-item-value {
  margin-top: 4px;
  font-size: 14px;
  color: #333;
}



.view-ticket .fa {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
}

.text.onhold {
  color: #0071bc;
}
.text.customer-reply {
  color: #9E9E9E;
}
.text.open,
.text.answered {
  color: #3C763D;
}
.text.closed {
  color: #D99840;
}

.border-none {
  border: none !important;
}

.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

.ticket-reply table {
  margin: 10px 0 !important;
  background-color: #fff;
  border: 1px solid #ddd;
}

.ticket-reply table thead {
  background-color: #f9fafb;
}

.ticket-reply table th,
.ticket-reply table td {
  padding: 8px;
  border: 1px solid #ddd;
}