.changelog-wrapper {
  padding: 20px;
  background-color: #fff;
}

/* Container for the Border Radius and Gold Border */
.changelog-table-container {
  border-radius: 10px;
  overflow: hidden; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.igf-changelog-table {
  width: 100%;
  background-color: #FFFBF4; /* Exact background from your request */
  table-layout: fixed;
}

/* Header - No Vertical Lines */
.igf-changelog-table thead th {
  background-color: #D4A035;
  color: #ffffff;
  text-align: left;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 600;
  border: none; /* Removes vertical lines in header */
}

/* Body Cells - Horizontal Lines Only */
.igf-changelog-table td {
  padding: 15px 12px;
  font-size: 12px;
  color: #333;
  vertical-align: top;
  border-bottom: 1px solid #E8E2D5; /* Subtle tan horizontal line */
  border-right: none;               /* NO VERTICAL LINES */
  word-wrap: break-word;
  line-height: 1.5;
}

/* Special styling for the value columns */
.value-cell {
  font-size: 11px;
  color: #555;
  white-space: pre-wrap;
}

.field-name {
  font-weight: 600;
}

/* Clean up the last row's border */
.igf-changelog-table tbody tr:last-child td {
  border-bottom: none;
}

.no-data {
  text-align: center;
  padding: 50px !important;
  color: #999;
  font-style: italic;
}
