.top-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.box {
  border: 2px solid #334155;
  padding: 12px;
  min-height: 180px;
  background: #020617;
  max-height: 300px;
  overflow-y: auto;
}

.box h3 {
  margin-top: 0;
  text-align: center;
  border-bottom: 1px solid #334155;
  padding-bottom: 6px;
}

input, button {
  width: 95%;
  margin-top: 8px;
  padding: 6px;
  background: #020617;
  color: #e5e7eb;
  border: 1px solid #334155;
}

button {
  width: 100%;
  cursor: pointer;
}

#adminUserList li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

#adminUserList li span,
#adminUserList li strong {
  margin-right: 8px;
}

.adminActionBtn {
  width: 80px;
  cursor: pointer;
  background-color: #2563eb;
}

.adminActionBtn:hover {
  background-color: #1d4ed8;
}
