.account-body { background: #f6f8fb; min-height: 100vh; }
.account-header { position: static; }
.account-main { max-width: 880px; margin: 0 auto; padding: 32px 20px 60px; display: grid; gap: 18px; }
.account-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(8, 17, 31, .06);
}
.account-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.account-tabs button {
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--line);
  background: #f6f8fb;
  border-radius: 8px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}
.account-tabs button.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.account-field { display: grid; gap: 6px; margin: 12px 0; }
.account-field label { font-size: 13px; font-weight: 700; color: #354055; }
.account-field input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}
.account-submit {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  margin-top: 10px;
  cursor: pointer;
}
.account-error { color: #dc2626; min-height: 20px; font-size: 13px; margin-top: 8px; }
.account-hint { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; }
.account-hint button { background: none; border: 0; color: var(--blue); font-weight: 700; cursor: pointer; padding: 0; }
.account-profile-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.account-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: #eef4ff;
  color: var(--blue-strong);
}
.account-badge.on { background: #e8f7ee; color: #0f7a3d; }
.account-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 14px; }
.account-item { border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.account-item span { display: block; color: var(--muted); font-size: 12px; }
.account-item strong { display: block; margin-top: 4px; font-size: 15px; }
.account-logout { border: 1px solid var(--line); background: #fff; border-radius: 8px; min-height: 38px; padding: 0 14px; font-weight: 700; cursor: pointer; }
.account-table-wrap { width: 100%; overflow-x: auto; margin-top: 8px; }
.account-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.account-table th, .account-table td { padding: 10px 8px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
.account-table th { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.account-empty { color: var(--muted); padding: 14px; border: 1px dashed var(--line); border-radius: 8px; text-align: center; }
