/* === TABEL USER WRAPPER === */
.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

/* === TABEL USER === */
.user-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius);
  overflow: hidden;
  font-size: 14px;
}

.user-table th,
.user-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  color: var(--text-primary);
}

.user-table th {
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

/* === TOMBOL EDIT (IKON PENA) === */
.edit-user-btn {
  background: none;
  border: none;
  color: var(--highlight);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.edit-user-btn:hover {
  background-color: rgba(0, 191, 255, 0.1);
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.3);
}
