/* 관리자 현황의 이동 가능한 지표만 버튼으로 표시한다. */
#adminBody .admin-overview-link-card {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

#adminBody .admin-overview-link-card:hover {
  border-color: var(--sky-deep);
}

#adminBody .admin-overview-link-card:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 2px;
}

/* 관리자 현황의 최근 가입 회원 표는 화면 폭에 맞춰 모든 항목을 표시한다. */
#adminBody .admin-overview-recent-members {
  min-width: 0;
  margin-top: 18px;
}

#adminBody .admin-overview-recent-members .table-wrap {
  overflow: visible;
}

#adminBody .admin-overview-recent-members table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

#adminBody .admin-overview-recent-members th,
#adminBody .admin-overview-recent-members td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  vertical-align: top;
}

#adminBody .admin-overview-recent-members th:nth-child(1),
#adminBody .admin-overview-recent-members td:nth-child(1) {
  width: 22%;
}

#adminBody .admin-overview-recent-members th:nth-child(2),
#adminBody .admin-overview-recent-members td:nth-child(2) {
  width: 36%;
}

#adminBody .admin-overview-recent-members th:nth-child(3),
#adminBody .admin-overview-recent-members td:nth-child(3) {
  width: 28%;
}

#adminBody .admin-overview-recent-members th:nth-child(4),
#adminBody .admin-overview-recent-members td:nth-child(4) {
  width: 14%;
}

@media (max-width: 700px) {
  #adminBody .admin-overview-recent-members .table-wrap {
    border: 0;
    background: transparent;
  }

  #adminBody .admin-overview-recent-members table,
  #adminBody .admin-overview-recent-members tbody,
  #adminBody .admin-overview-recent-members tr,
  #adminBody .admin-overview-recent-members td:nth-child(n) {
    display: block;
    width: 100%;
  }

  #adminBody .admin-overview-recent-members thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  #adminBody .admin-overview-recent-members tr {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 7px 0;
  }

  #adminBody .admin-overview-recent-members td {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    padding: 7px 12px;
    border-bottom: 0;
    overflow-wrap: anywhere;
  }

  #adminBody .admin-overview-recent-members td::before {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }

  #adminBody .admin-overview-recent-members td:nth-child(1)::before { content: "가입일"; }
  #adminBody .admin-overview-recent-members td:nth-child(2)::before { content: "이메일"; }
  #adminBody .admin-overview-recent-members td:nth-child(3)::before { content: "업체명"; }
  #adminBody .admin-overview-recent-members td:nth-child(4)::before { content: "잔액"; }
}
