/* Base table style */
.table.essential-history-detail {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", Roboto, sans-serif;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin: 15px 0;
  font-size: 14px;
}

/* Table rows */
.table.essential-history-detail tr {
  border-bottom: 1px solid #eee;
}

/* Header (left column) */
.table.essential-history-detail th {
  background: #f7f9fc;
  font-weight: 600;
  color: #333;
  padding: 12px 14px;
  text-align: left;
  width: 180px; /* keeps first column aligned */
  vertical-align: top;
}

/* Data (right column) */
.table.essential-history-detail td {
  padding: 12px 14px;
  color: #444;
  word-break: break-word;
  white-space: pre-wrap; /* keeps JSON formatting readable */
  font-family: Consolas, "Courier New", monospace; /* for data */
}

/* Optional: highlight JSON */
.table.essential-history-detail td:nth-child(2) {
  background: #fafafa;
}
