.fields-container {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.field-entry {
  display: table-row;
  border-bottom: 1px solid #dee2e6;
}
.field-entry:last-child {
  border-bottom: none;
}
.field-label,
.field-value {
  display: table-cell;
  padding: 0.75rem 1rem;
  vertical-align: top;
}
.field-label {
  font-weight: 600;
  width: 40%;
  background-color: #f8f9fa;
  color: #495057;
}
.field-value {
  width: 60%;
}