/* Orders page specific styles */

#ordersColumn {
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

#detailsColumn {
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

/* Order table styles */
#ordersTableBody tr {
  transition: background-color 0.15s ease-in-out;
}

#ordersTableBody tr:hover {
  background-color: #f8f9fa;
}

#ordersTableBody tr.selected-row {
  background-color: #e7f1ff;
}

/* Specification lists */
.card-body dl {
  margin-bottom: 0;
}

.card-body dt {
  font-weight: 500;
  color: #6c757d;
}

.card-body dd {
  margin-bottom: 0.5rem;
}

/* Status badges */
.badge {
  font-weight: 500;
  font-size: 0.75rem;
}

/* Notes section */
#detailsContainer .text-break {
  word-wrap: break-word;
  white-space: pre-wrap;
}

/* Pre-formatted text for IDs */
#detailsContainer pre {
  font-size: 0.7rem;
  margin: 0;
}
