/* Admin users table */
.adminUserCell {
  padding: 10px 12px;
  vertical-align: middle;
}

.adminUserNameRow {
  font-weight: 600;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.adminUserLineIcon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.adminUserPasskeyIcon {
  font-size: 0.95rem;
  line-height: 1;
  color: #007aff;
  flex-shrink: 0;
}

.adminUserSurveyIcon {
  font-size: 0.95rem;
  line-height: 1;
  color: #ff6b00;
  flex-shrink: 0;
}

.adminUserKana {
  font-size: 0.85rem;
  color: #6e6e73;
}


.adminUserRoles {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.adminUserRolesCell {
  padding: 10px 12px;
  vertical-align: middle;
  display: table-cell;
}

.adminUserRolesCell .roleBadge {
  display: inline-block;
  margin: 2px 2px 2px 0;
}

.adminUserNoRole {
  color: #aeaeb2;
  font-size: 0.85rem;
}

.adminUserEmailCell {
  padding: 12px;
  font-size: 0.9rem;
  color: #1d1d1f;
  word-break: break-all;
}

.adminUserNumberCell {
  padding: 12px;
  text-align: center;
  font-weight: 600;
}


/* ── User detail view (clean list layout) ── */
.udView {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.udNameSection {
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f2;
}

.udName {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d1d1f;
}

.udKana {
  font-size: 0.83rem;
  color: #6e6e73;
  margin-top: 2px;
}

.udId {
  font-size: 0.72rem;
  color: #aeaeb2;
  margin-top: 6px;
  font-family: 'SF Mono', 'Menlo', monospace;
  word-break: break-all;
}

.udSection {
  background: #f5f5f7;
  border-radius: 10px;
  overflow: hidden;
}

.udRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 13px;
  border-bottom: 1px solid #e8e8ea;
  gap: 12px;
  min-height: 38px;
}

.udRow:last-child {
  border-bottom: none;
}

.udLabel {
  font-size: 0.83rem;
  color: #6e6e73;
  flex-shrink: 0;
  min-width: 72px;
}

.udValue {
  font-size: 0.88rem;
  color: #1d1d1f;
  text-align: right;
  min-width: 0;
}

.udValueBreak { word-break: break-all; }
.udValueMuted { color: #aeaeb2; }
.udValueScore { color: #007aff; font-weight: 600; }
.udValueCoin  { color: #ff9500; font-weight: 600; }
.udValueDate  { font-family: 'SF Mono', 'Menlo', monospace; font-size: 0.78rem; color: #6e6e73; }

.udRoleBadges { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px; }

.udRoleBadge {
  padding: 2px 8px;
  background: #e8f0ff;
  color: #007aff;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 600;
}

.udAuthOk { color: #34c759; font-size: 0.85rem; font-weight: 600; }
.udAuthNg  { color: #aeaeb2; font-size: 0.85rem; }

.udSurveySection { margin-top: 8px; }
.udSurveyInterests { word-break: break-word; text-align: right; }

/* Survey inline section in detail tab */
.udSurveyDetailSection { margin-top: 8px; }
.udSurveyDetailHeading {
  font-size: 0.72rem;
  font-weight: 600;
  color: #aeaeb2;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0 2px;
  margin-bottom: 4px;
}
.udSurveyDetailHeading i { color: #ff6b00; margin-right: 4px; }

/* Survey tab */
.uaSurveyContent { padding: 4px 0; }
.uaSurveyEmpty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  color: #aeaeb2;
}
.uaSurveyEmptyIcon { font-size: 2rem; margin-bottom: 0.5rem; }
.uaSurveyEmptyText { font-size: 0.9rem; margin: 0; }

/* History section */
.udHistorySection { margin-top: 4px; }

.udSectionLabel {
  font-size: 0.72rem;
  font-weight: 600;
  color: #aeaeb2;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  padding-left: 2px;
}

.udHistoryContent {
  font-size: 0.85rem;
  color: #6e6e73;
}

.udMutedText  { color: #6e6e73; font-size: 0.85rem; }
.udErrorText  { color: #ff3b30; font-size: 0.85rem; }

.udHistoryTableWrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e5e5e7;
}

.udHistoryTable {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.udHistoryHeadRow {
  background: #f5f5f7;
  border-bottom: 1px solid #e5e5e7;
}

.udHistoryTh {
  padding: 7px 10px;
  text-align: left;
  font-size: 0.76rem;
  font-weight: 600;
  color: #6e6e73;
  white-space: nowrap;
}

.udHistoryTd {
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f2;
  font-size: 0.82rem;
  color: #1d1d1f;
}

.udHistoryTd--nowrap { white-space: nowrap; }

.udHistoryLink {
  color: #007aff;
  text-decoration: none;
  font-weight: 600;
}

.udHistoryLink:hover { text-decoration: underline; }

.udHistoryChip {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 600;
}

.udHistoryChip--yes { background: #e8f9ee; color: #1a7a3c; }
.udHistoryChip--no  { background: #f5f5f7; color: #6e6e73; }


/* Admin login history */
.loginHistoryCard {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e7;
}

.loginHistoryTitle {
  margin-top: 0;
  margin-bottom: 1rem;
}

.loginHistoryYouBadge {
  margin-left: 8px;
  padding: 2px 8px;
  background: #17a2b8;
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.loginHistoryUserAgent {
  font-size: 0.85rem;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

/* Admin users page */
.adminUsersHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.adminUsersHeaderActions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.adminUsersTitle {
  margin: 0;
  color: #1d1d1f;
  font-weight: 600;
}

.adminUsersSectionTitle {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #1d1d1f;
  font-weight: 600;
}

.adminUsersListSubText {
  color: #6e6e73;
  font-size: 0.9rem;
  margin: -0.5rem 0 1rem;
}

.adminUsersTableWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.adminUsersTable {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.adminUsersHeadRow {
  background: #f5f5f7;
  color: #1d1d1f;
  border-bottom: 1px solid #e5e5e7;
}

.adminUsersTh {
  padding: 14px 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.adminUsersTh--left {
  text-align: left;
}

.adminUsersTh--center {
  text-align: center;
}
.adminUsersTh--check { width: 44px; text-align: center; }
.adminUsersTh--name { min-width: 160px; width: 30%; }
.adminUsersTh--roles { min-width: 120px; width: 25%; }
.adminUsersTh--grade { width: 70px; }
.adminUsersTh--score { width: 80px; }

.adminUsersSortBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: inherit;
  padding: 0;
}
.adminUsersSortBtn--center {
  justify-content: center;
  width: 100%;
}
.adminUsersSortIndicator { font-size: 0.8rem; }

/* Checkbox cell */
.adminUserCheckCell {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}

/* Bulk email button */
.adminBulkEmailBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #007aff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}
.adminBulkEmailBtn:hover { background: #005ecb; }

/* ── Unified User Actions Modal ── */
.uaModalTabs {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #e5e5e7;
  padding-bottom: 0;
  overflow-x: auto;
}

.uaModalTab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6e6e73;
  border-radius: 6px 6px 0 0;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.uaModalTab:hover { color: #1d1d1f; background: #f5f5f7; }
.uaModalTab--active { color: #007aff; border-bottom-color: #007aff; }

.uaTabPanel { display: none; }
.uaTabPanel--active { display: block; }

.uaEmailRecipientBox {
  padding: 10px 14px;
  background: #f5f5f7;
  border: 1px solid #e5e5e7;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.uaEmailRecipientLabel {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6e6e73;
  margin-bottom: 4px;
}
.uaEmailRecipientValue {
  font-size: 0.95rem;
  color: #1d1d1f;
  word-break: break-all;
}
.uaEmailBodyTextarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 0.95rem;
  resize: vertical;
  font-family: inherit;
}

.uaModalDangerZone {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid #fecaca;
  border-radius: 10px;
  background: #fff1f0;
}
.uaModalDangerTitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.uaDeleteBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  color: #ff3b30;
  border: 1px solid #ff3b30;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}
.uaDeleteBtn:hover { background: #fff1f0; }

/* ── Send Email Modal ── */
.sendEmailRecipientsBox {
  padding: 12px 14px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  margin-bottom: 1rem;
  max-height: 160px;
  overflow-y: auto;
}
.sendEmailRecipientsLabel {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sendEmailRecipientsList { display: flex; flex-direction: column; gap: 6px; }
.sendEmailRecipientsEmpty { color: #6e6e73; font-size: 0.9rem; }
.sendEmailRecipientItem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.sendEmailRecipientIcon { color: #0369a1; font-size: 0.8rem; }
.sendEmailRecipientName { font-weight: 600; color: #1d1d1f; }
.sendEmailRecipientEmail { color: #6e6e73; word-break: break-all; }

.sendEmailInput {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 0.95rem;
}
.sendEmailTextarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 0.95rem;
  resize: vertical;
  font-family: inherit;
}
.sendEmailStatus {
  min-height: 1.4rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.sendEmailStatus--success { color: #166534; }
.sendEmailStatus--error { color: #b91c1c; }

.sendEmailActions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1rem;
}
.sendEmailCancelBtn {
  padding: 10px 20px;
  background: #f5f5f7;
  color: #1d1d1f;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.sendEmailSubmitBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #007aff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.sendEmailSubmitBtn:hover:not(:disabled) { background: #005ecb; }
.sendEmailSubmitBtn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Admin edit roles modal */
.rolesList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roleOptionLabel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  cursor: pointer;
}

.roleOptionCheckbox {
  width: 16px;
  height: 16px;
}

.roleOptionMeta {
  display: flex;
  flex-direction: column;
}

.roleOptionLabelText {
  font-weight: 600;
  color: #1d1d1f;
}

.roleOptionNameText {
  font-size: 0.8rem;
  color: #6e6e73;
}

.rolesActions {
  margin-top: 1rem;
  text-align: right;
}

.rolesEditBtn {
  background: none;
  border: none;
  font-size: 0.9rem;
  color: #007aff;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
}

.rolesEditIcon {
  margin-right: 4px;
}

.rolesSubmitBtnFull {
  width: 100%;
  margin-top: 1rem;
}

/* ── Admin users table row ── */
.user-row { border-bottom: 1px solid #e5e5e7; }
.user-row:nth-child(even) { background: #fafafa; }
.user-row.is-hidden { display: none; }
.adminUserRowClickable { cursor: pointer; }
.adminUserRowClickable:hover { background: #eef4ff !important; }

/* ── AdminCreateRoleModal ── */
.createRoleInfoBox { padding: 16px; border-radius: 14px; }
.createRoleInfoBox--primary { border: 1px solid #e5e5e7; background: #f8fafc; }
.createRoleInfoBox--danger { border: 1px solid #fecaca; background: #fff1f0; }
.createRoleInfoBox_title { margin: 0 0 6px 0; color: #1d1d1f; font-size: 1rem; font-weight: 700; }
.createRoleInfoBox_desc { margin: 0; color: #6e6e73; font-size: 0.88rem; line-height: 1.5; }
.createRoleEmpty { padding: 12px; border-radius: 8px; background: #fff; color: #6e6e73; font-size: 0.9rem; border: 1px solid #e5e5e7; }
.createRoleItem { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px; border: 1px solid #fecaca; border-radius: 10px; background: #fff; }
.createRoleItem_label { font-weight: 600; color: #1d1d1f; word-break: break-word; }
.createRoleItem_desc { font-size: 0.82rem; color: #6e6e73; word-break: break-word; }
.createRoleItem_deleteBtn { padding: 8px 12px; border-radius: 8px; border: 1px solid #ff3b30; background: #fff; color: #ff3b30; font-weight: 600; cursor: pointer; }

/* ── AdminDeletedUsersPage rank badge in table cell ── */
.rankBadgeCell { padding: 2px 6px; border-radius: 4px; font-size: 0.7rem; font-weight: 600; }
.rankBadgeCell--platinum { background: #00000020; color: #000000; border: 1px solid #00000040; }
.rankBadgeCell--gold { background: #ffd70020; color: #ffd700; border: 1px solid #ffd70040; }
.rankBadgeCell--silver { background: #c0c0c020; color: #c0c0c0; border: 1px solid #c0c0c040; }
.rankBadgeCell--normal { background: #bee2ff20; color: #bee2ff; border: 1px solid #bee2ff40; }

/* ── AdminDeletedUsersPage cell classes ── */
.td--deletedEmail { font-size: 0.9rem; color: #1d1d1f; opacity: 0.6; word-break: break-all; }
.td--deletedNum { opacity: 0.6; font-weight: 600; }
.deletedUser_nameWrap { display: flex; flex-direction: column; gap: 6px; }
.deletedUser_nameRow { display: flex; align-items: center; gap: 8px; }
/* rank-elements のランク色はそのままだと名前行より濃く見えるため、一覧のトーンに合わせる */
.deletedUser_nameRow .rankBadge {
  opacity: 0.6;
}
.deletedUser_name { font-weight: 600; margin-bottom: 2px; color: #1d1d1f; opacity: 0.6; }
.deletedUser_kana { font-size: 0.85rem; color: #6e6e73; opacity: 0.6; }
.deletedUser_adminBadge {
  padding: 3px 8px;
  background: #f5f5f7;
  color: #007aff;
  border: 1px solid #007aff;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.6;
}
.deletedUser_roleList { display: flex; flex-wrap: wrap; gap: 4px; opacity: 0.6; }
.deletedUser_roleBadge {
  padding: 2px 8px;
  background: #eef2ff;
  color: #007aff;
  border: 1px solid #007aff;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
}
.deletedUser_deletedAt { font-size: 0.9rem; color: #ff3b30; }

/* ── Setup prompt modal (UserLayout) ── */
.setupPromptOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 29, 31, 0.48);
  z-index: 1400;
  padding: 1.25rem;
  align-items: center;
  justify-content: center;
}
.setupPromptDialog {
  width: min(100%, 460px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  padding: 1.5rem;
  position: relative;
}
.setupPromptClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f5f5f7;
  color: #6e6e73;
  cursor: pointer;
  font-size: 1rem;
}
.setupPromptIconWrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}
.setupPromptIcon { font-size: 1.5rem; }
.setupPromptTitle {
  margin: 0 0 0.75rem 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1d1d1f;
}
.setupPromptDesc {
  margin: 0 0 1.25rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6e6e73;
}
.setupPromptNeverLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: #1d1d1f;
  font-size: 0.92rem;
  cursor: pointer;
}
.setupPromptBtnRow { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.setupPromptSecondaryBtn {
  flex: 1 1 140px;
  min-height: 44px;
  border: 1px solid #d2d2d7;
  border-radius: 999px;
  background: #ffffff;
  color: #1d1d1f;
  font-weight: 600;
  cursor: pointer;
}
.setupPromptPrimaryBtn {
  flex: 1 1 180px;
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.setupPromptOverlay.is-open {
  display: flex;
}

.setupPromptOverlay--passkey .setupPromptPrimaryBtn {
  background: #007aff;
  color: #ffffff;
}
.setupPromptOverlay--passkey .setupPromptIconWrap {
  background: #f8fafc;
}
.setupPromptOverlay--passkey .setupPromptIcon {
  color: #007aff;
}
.setupPromptOverlay--line .setupPromptPrimaryBtn {
  background: #06c755;
  color: #ffffff;
}
.setupPromptOverlay--line .setupPromptIconWrap {
  background: #f5fff8;
}
.setupPromptOverlay--line .setupPromptIcon {
  color: #06c755;
}

/* ── AdminUserFilter ── */
.adminUserFilter { margin-bottom: 1.5rem; }
.adminUserFilter_searchRow { display: flex; gap: 10px; margin-bottom: 1rem; flex-wrap: wrap; }
.adminUserFilter_toggleBtn {
  padding: 10px 15px;
  background: #f5f5f7;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.adminUserFilter_resetBtn {
  padding: 10px 15px;
  background: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.adminUserFilter_panel {
  display: none;
  background: #f5f5f7;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e5e7;
  margin-bottom: 1rem;
}
.adminUserFilter_panel.is-open { display: block; }
.adminUserFilter_toggleBtn.is-active { background: #e5e5e7; }
.adminUserFilter_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.adminUserFilter_sectionTitle {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #6e6e73;
}
.adminUserFilter_optionList { display: flex; flex-direction: column; gap: 8px; }
.adminUserFilter_label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.adminUserFilter_optionText { font-size: 0.9rem; }
.adminUserFilter_rankText { font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.sort-icon-desc { transform: rotate(180deg); }

/* ── AdminSecurityPage ── */
.adminSecuritySection {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.adminSecuritySection--mb { margin-bottom: 2rem; }
.adminSecuritySection_h2 { margin-top: 0; }
.adminPasskeyDesc { font-size: 0.9rem; color: #6e6e73; margin-bottom: 1rem; }
.adminPasskeyList { margin-bottom: 1.5rem; }
.adminPasskeyList_h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.adminPasskeyItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.adminPasskeyItem_id { font-weight: 600; }
.adminPasskeyItem_date { font-size: 0.85rem; color: #6e6e73; }
.adminPasskeyItem_deleteBtn {
  padding: 6px 12px;
  background: #dc3545;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}
.admin-security-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #ffffff;
  border: 2px solid #007bff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #007bff;
  transition: all 0.2s;
}
.adminPasskeyRegister_icon { font-size: 1.5rem; color: #007bff; }
.adminPasskeyMessage { margin-top: 0.5rem; font-size: 0.9rem; }
.adminPasskeyMessage.is-neutral { color: #1d1d1f; }
.adminPasskeyMessage.is-success { color: #28a745; }
.adminPasskeyMessage.is-error { color: #dc3545; }
