/* Admin row actions — View (gold), Modify (blue), Delete (red) */

.admin-neon-theme .admin-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-neon-theme .admin-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1;
  min-height: 34px;
  padding: 8px 14px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.admin-neon-theme .admin-btn-view {
  background: rgba(251, 191, 36, 0.12) !important;
  border-color: rgba(251, 191, 36, 0.45) !important;
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.12) !important;
  color: #fcd34d !important;
}

.admin-neon-theme .admin-btn-view:hover {
  background: rgba(251, 191, 36, 0.2) !important;
  border-color: rgba(251, 191, 36, 0.65) !important;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.22) !important;
  color: #fde68a !important;
}

.admin-neon-theme .admin-btn-modify {
  background: rgba(59, 130, 246, 0.14) !important;
  border-color: rgba(59, 130, 246, 0.45) !important;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.14) !important;
  color: #93c5fd !important;
}

.admin-neon-theme .admin-btn-modify:hover {
  background: rgba(59, 130, 246, 0.24) !important;
  border-color: rgba(96, 165, 250, 0.65) !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25) !important;
  color: #dbeafe !important;
}

.admin-neon-theme .admin-btn-delete {
  background: rgba(248, 113, 113, 0.14) !important;
  border-color: rgba(248, 113, 113, 0.45) !important;
  box-shadow: 0 0 16px rgba(248, 113, 113, 0.12) !important;
  color: #fca5a5 !important;
}

.admin-neon-theme .admin-btn-delete:hover {
  background: rgba(248, 113, 113, 0.24) !important;
  border-color: rgba(252, 165, 165, 0.65) !important;
  box-shadow: 0 0 20px rgba(248, 113, 113, 0.22) !important;
  color: #fecaca !important;
}

.admin-neon-theme .admin-actions form {
  margin: 0;
}

.admin-neon-theme .data-table .admin-actions {
  justify-content: flex-start;
}
