/* table */
table.standard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.standard-table thead {
  background-color: #f3f4f6;
}

.standard-table th,
.standard-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
}

.standard-table th {
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e7eb;
}

.standard-table td {
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.standard-table tr:last-child td {
  border-bottom: none;
}

.edit-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #111827;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.edit-button:hover {
  background-color: #1f2937;
}

.edit-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
