/* Product Parameters Table Container */
.table-container {
  overflow-x: auto;
  margin-bottom: 1rem;
}

/* Simple Table Styles */
.simple-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.simple-table thead th {
  background-color: rgba(0, 71, 107, 0.05);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--primary);
}

.simple-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.3s ease;
}

.simple-table tbody tr:last-child {
  border-bottom: none;
}

.simple-table tbody tr:hover {
  background-color: rgba(0, 71, 107, 0.05);
}

.simple-table td {
  padding: 1rem 1.25rem;
  vertical-align: top;
  line-height: 1.5;
}

.simple-table td:first-child {
  font-weight: 600;
  color: var(--primary);
}

.simple-table td div {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.simple-table td div::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.simple-table td div:last-child {
  margin-bottom: 0;
}

.simple-table td div span {
  font-weight: 600;
  color: var(--primary);
}