/* Admin Tools Section */
.admin-tools {
	display: flex;
	gap: 20px;
	padding: 40px;
}

.admin-left-panel, .admin-right-panel {
	flex: 1;
	background-color: #1e1e1e;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.admin-left-panel h2 {
	margin-bottom: 15px;
	color: #4da6ff;
}

#pending-users-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Pending User Section */
.pending-user-card {
	background-color: #2a2a2a;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.user-info {
	color: #fff;
}

.user-actions button {
	margin-left: 10px;
}

/* Pending Refresh Button */
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5em;
}

.section-header h2 {
	margin: 0;
	font-size: 1.4rem;
}

.btn-refresh {
	background-color: transparent;
	border: none;
	font-size: 1.2rem;
	cursor: pointer;
	color: #3498db;
	padding: 0.2em 0.4em;
	transition: transform 0.2s ease;
}

.btn-refresh:hover {
	transform: rotate(90deg);
	color: #2980b9;
}

/* Back to home button */
.btn-backtohome {
  --btn-bg-1: hsla(210, 100%, 70%, 1);
  --btn-bg-2: hsla(210, 100%, 50%, 1);
  --btn-bg-color: #fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5em 1em;
  min-width: 100px;
  min-height: 36px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: 0.5em;
  color: var(--btn-bg-color);
  box-shadow:
    0px 0px 20px rgba(71, 157, 255, 0.5),
    0px 5px 5px -1px rgba(58, 140, 233, 0.25),
    inset 4px 4px 8px rgba(175, 211, 255, 0.5),
    inset -4px -4px 8px rgba(19, 102, 216, 0.35);
}

.btn-backtohome:hover {
  background-position: right top;
}

.btn-backtohome:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}