/* =================== account-shell.css =================== */
/* Shared account layout primitives: hero, tabs, quick links and orders table. */

.acct,
.acct-premium {
  padding: var(--hc-sp-5, 24px) 0;
}

.acct-premium__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
  margin-bottom: var(--hc-sp-5, 24px);
}

.acct-premium__hero h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.acct-premium__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 var(--hc-sp-5, 24px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 0.5px solid rgba(180, 151, 115, 0.22);
  border-radius: 14px;
}

.acct-premium__tabs > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 0.5px solid rgba(180, 151, 115, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.72));
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.acct-premium__tabs > a:hover {
  color: var(--hc-ink, #1a1714);
  border-color: rgba(180, 151, 115, 0.42);
}

.acct-premium__tabs > a.is-active {
  background: linear-gradient(180deg, #1f1a15, #14110d);
  border-color: rgba(0, 0, 0, 0.34);
  color: #fff;
}

.hc-tab-badge {
  display: inline-block;
  margin-left: 2px;
  padding: 1px 8px;
  background: #b8860b;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.acct-premium__quick {
  margin: 0 0 var(--hc-sp-5, 24px);
}

.acct__orders {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 0.5px solid rgba(180, 151, 115, 0.22);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.acct__orders th,
.acct__orders td {
  padding: 12px 14px;
  border-bottom: 0.5px solid rgba(26, 23, 20, 0.08);
  text-align: left;
  font-size: 13px;
}

.acct__orders th {
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.55));
  background: var(--hc-paper-2, #fafaf8);
}

.acct__orders tbody tr:last-child td {
  border-bottom: 0;
}

.acct__orders .status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(26, 23, 20, 0.08);
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.72));
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .acct-premium__tabs {
    padding: 8px;
  }

  .acct__orders {
    display: block;
    overflow-x: auto;
  }
}

/* ---- folded from 230-account-documents.css ---- */
.acct-docs-table th,
.acct-docs-table td {
  vertical-align: middle;
}
.acct-docs-table__actions {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .acct-docs-table {
    min-width: 760px;
  }
}

/* ---- folded from 232-account-approvals-bulk.css ---- */
.hc-approval-bulk {
  padding: 14px;
  margin-bottom: 14px;
  display: grid;
  gap: 10px;
}
.hc-approval-bulk__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hc-approval-card__chk {
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
}
.hc-approval-select {
  width: 18px;
  height: 18px;
}
