.table-container {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.table-container .table {
  width: 100%;
  margin-bottom: 0px;
  border-collapse: collapse;
}
.table-container .table thead {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.table-container .table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
}
.table-container .table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s;
}
.table-container .table tbody tr:hover {
  background-color: #f9fafb;
}
.table-container .table td {
  padding: 12px 16px;
  font-size: 14px;
}
.table-container .name-cell {
  color: #6b7280;
}
.table-container .role-cell {
  color: #6b7280;
}
.table-container .email-cell {
  color: #6b7280;
}
.table-container .badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background-color: #fef3c7;
  color: #92400e;
  font-size: 12px;
  border-radius: 4px;
}
.table-container td.last-child {
  width: 120px;
  max-width: 120px;
  text-align: left;
  padding-right: 16px;
}
.table-container th.last-child {
  width: 120px;
  max-width: 120px;
  text-align: left;
  padding-right: 16px;
}
.table-container .butn-mnge {
  width: auto;
  padding: 4px 12px;
  background: none;
  border: none;
}
.table-container .butn-mnge:hover {
  background: none;
}
.table-container .butn-mnge a {
  display: inline-block;
  font-size: 14px;
  color: #2563eb;
  cursor: pointer;
  text-decoration: none;
}
.table-container .butn-mnge a:hover {
  color: #1e40af;
  text-decoration: underline;
}
