:root {
  color-scheme: dark;
  --page: #090909;
  --panel: #141414;
  --panel-2: #0d0d0d;
  --text: #fff;
  --muted: #aaa;
  --border: #343434;
  --gold: #f0b92f;
  --gold-light: #f6cf72;
  --danger: #ff8b87;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: radial-gradient(circle at top, rgba(240, 185, 47, 0.07), transparent 320px), var(--page);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, input, select, a { font: inherit; }
.hidden { display: none !important; }
.muted { color: var(--muted); }

.profile-header {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 18px max(18px, env(safe-area-inset-right)) 18px max(18px, env(safe-area-inset-left));
}

.profile-header a { display: block; max-width: 100%; }

.profile-header img {
  display: block;
  width: 92px;
  height: 92px;
  max-width: 100%;
  object-fit: contain;
  background: #080808;
  border: 1px solid rgba(240, 185, 47, 0.32);
  border-radius: 10px;
}

.profile-shell {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 max(12px, env(safe-area-inset-right)) calc(52px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
}

.profile-shell,
#profileHomeView,
.profile-panel,
.profile-home-heading,
.profile-card-grid,
.profile-card,
.profile-card-detail,
.profile-primary-actions,
.profile-accordion,
.profile-accordion-trigger,
.profile-accordion-content,
.profile-inline-form,
.profile-inline-actions,
.profile-modal-content,
.profile-modal-actions,
.profile-reschedule-fields,
.history-row,
.history-row-main,
.history-prices,
.compact-list,
.compact-list div {
  min-width: 0;
  max-width: 100%;
}

.profile-panel, .profile-card, .profile-accordion {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--panel);
}

.profile-card.clickable {
  cursor: pointer;
}

.profile-card.clickable:hover,
.profile-card.clickable:focus-visible {
  border-color: rgba(240, 185, 47, 0.62);
  outline: none;
}

.profile-total-savings {
  display: block;
  color: var(--gold-light);
  font-size: 1.35rem;
}

.profile-credit-balance {
  color: var(--gold-light);
  font-size: 1.35rem;
}

.profile-credit-limit,
.profile-credit-message {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.profile-credit-history-accordion {
  margin-top: 14px;
  border-radius: 11px;
  background: var(--panel-2);
}

.profile-credit-history-accordion .profile-accordion-trigger {
  min-height: 44px;
  padding: 11px 12px;
}

.profile-credit-history-accordion .profile-accordion-content {
  padding: 0 12px 4px;
}

.profile-credit-history-row {
  display: grid;
  gap: 5px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.profile-credit-history-row:last-child {
  border-bottom: 0;
}

.profile-credit-history-heading {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.profile-credit-history-heading > strong:first-child {
  min-width: 0;
}

.profile-credit-amount {
  flex: 0 0 auto;
  text-align: right;
}

.profile-credit-amount.added {
  color: var(--gold-light);
}

.profile-credit-amount.used {
  color: var(--text);
}

.profile-credit-history-row time,
.profile-credit-history-row p {
  color: var(--muted);
  font-size: .76rem;
}

.profile-credit-history-row p {
  margin: 0;
}

.profile-panel { padding: 20px; }
.state-view { text-align: center; }
.eyebrow { margin: 0 0 6px; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
h1 { margin: 0 0 10px; font-size: clamp(1.5rem, 7vw, 2rem); }
.profile-coming-soon { margin: 14px 0; padding: 12px; border: 1px solid rgba(240, 185, 47, .3); border-radius: 10px; background: rgba(240, 185, 47, .06); text-align: left; }
.profile-coming-soon strong { color: var(--gold-light); }
.profile-coming-soon p { margin: 5px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }

.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 18px 0; }
.auth-tabs button, .text-button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.auth-tabs button { padding: 11px; border-bottom: 2px solid var(--border); }
.auth-tabs button[aria-selected="true"] { border-color: var(--gold); color: var(--gold-light); }

form { display: grid; gap: 13px; }
label { display: grid; gap: 7px; color: var(--muted); font-size: .82rem; text-align: left; }
input, select { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; background: #080808; color: var(--text); }
input:focus, select:focus { border-color: var(--gold); outline: none; }

.primary-button, .small-button, .secondary-link, .primary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.small-button { min-height: 38px; margin-top: 12px; font-size: .76rem; }
.secondary-link { background: transparent; color: var(--gold-light); }
.text-button { min-height: 40px; font-weight: 750; }
.back-link { display: block; margin-top: 16px; color: var(--gold-light); text-align: center; }
.signup-success { text-align: center; }
.signup-success > p { margin: 8px 0 18px; color: var(--muted); line-height: 1.55; }
.signup-success > p strong { color: var(--text); overflow-wrap: anywhere; }
.signup-success-actions { display: grid; gap: 10px; }
.profile-booking-handoff-note { margin: -4px 0 14px; color: var(--gold-light); font-size: .8rem; line-height: 1.45; }
.form-message { min-height: 20px; margin: 0; color: var(--danger); font-size: .82rem; line-height: 1.4; }
.form-message.success { color: var(--gold-light); }
button:disabled { cursor: wait; opacity: .58; }

.profile-home-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.client-notification-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(240, 185, 47, 0.45);
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      rgba(240, 185, 47, 0.1),
      rgba(240, 185, 47, 0.025)
    ),
    var(--panel);
}

.client-notification-prompt-copy {
  min-width: 0;
}

.client-notification-prompt-copy h2 {
  margin: 0 0 5px;
  font-size: 1.02rem;
}

.client-notification-prompt-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.client-notification-prompt-actions {
  display: grid;
  gap: 5px;
  min-width: 168px;
}

.client-notification-prompt-actions .primary-button {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.75rem;
}

.client-notification-prompt-actions .text-button {
  min-height: 34px;
  font-size: 0.75rem;
}

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-card {
  min-width: 0;
  padding: 16px;
}

.card-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.profile-card p {
  line-height: 1.45;
}

.profile-card strong {
  display: block;
  overflow-wrap: anywhere;
}

.profile-card-detail {
  display: grid;
  gap: 5px;
}

.profile-card-detail span {
  color: var(--muted);
  font-size: .84rem;
  overflow-wrap: anywhere;
}

.loyalty-count {
  color: var(--gold-light);
  font-size: 1.05rem;
}

.profile-loyalty-reward-state {
  display: grid;
  gap: 5px;
  margin: 13px 0;
  padding: 13px;
  border: 1px solid rgba(240, 185, 47, 0.48);
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(240, 185, 47, 0.1),
    rgba(240, 185, 47, 0.025)
  );
}

.profile-loyalty-reward-state p {
  margin: 0;
  overflow-wrap: anywhere;
}

.profile-loyalty-reward-status {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.profile-loyalty-reward-title {
  color: var(--gold-light);
  font-size: 1.08rem;
}

.profile-loyalty-reward-milestone,
.profile-loyalty-reward-message,
.profile-loyalty-reserved-appointment,
.profile-loyalty-progress-note {
  color: var(--muted);
  font-size: .8rem;
}

.profile-loyalty-reserved-appointment {
  color: var(--text);
  font-weight: 700;
}

.profile-loyalty-progress-note {
  padding-top: 3px;
  border-top: 1px solid rgba(240, 185, 47, 0.2);
}

.profile-loyalty-appointment-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(240, 185, 47, 0.42);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  overflow-wrap: anywhere;
}

.loyalty-stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1px 3px;
  max-width: 100%;
  margin: 0 0 8px;
  line-height: 1;
}

.loyalty-star {
  flex: 0 0 auto;
  font-size: 1.12rem;
}

.loyalty-star.filled {
  color: var(--gold);
}

.loyalty-star.empty {
  color: #6d644f;
}

.loyalty-progress {
  height: 7px;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 999px;
  background: #292929;
}

.loyalty-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.compact-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.compact-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.compact-list dt {
  color: var(--muted);
}

.compact-list dd {
  min-width: 0;
  margin: 0;
  font-weight: 750;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-primary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 6px;
}

.rebook-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .76rem;
  text-align: center;
}

.profile-accordion {
  overflow: hidden;
  margin-top: 10px;
}

.profile-accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.profile-accordion-trigger > span:last-child {
  color: var(--gold);
  transition: transform 180ms ease;
}

.profile-accordion.open .profile-accordion-trigger > span:last-child {
  transform: rotate(180deg);
}

.profile-accordion-content {
  padding: 0 15px 15px;
  border-top: 1px solid var(--border);
}

.profile-accordion-content[hidden] {
  display: none;
}

.profile-promotions-accordion {
  grid-column: 1 / -1;
  margin-top: 0;
  border-color: rgba(240, 185, 47, .58);
  background: linear-gradient(135deg, rgba(240, 185, 47, .12), rgba(240, 185, 47, .025));
  box-shadow: inset 0 1px 0 rgba(255, 225, 145, .08);
}

.profile-promotions-accordion .profile-accordion-trigger {
  min-height: 88px;
  align-items: center;
}

.profile-promotions-trigger-copy {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 4px;
}

.profile-promotions-eyebrow {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.profile-promotions-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.profile-promotions-heading strong {
  min-width: 0;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.profile-promotions-badge {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid rgba(240, 185, 47, .72);
  border-radius: 999px;
  background: rgba(240, 185, 47, .12);
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.profile-promotions-subtitle {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.35;
}

.profile-promotions-chevron {
  flex: 0 0 auto;
}

.profile-promotions-accordion .profile-accordion-content {
  border-top-color: rgba(240, 185, 47, .34);
}

.profile-promotions-list {
  display: grid;
}

.profile-promotion {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.profile-promotion h3,
.profile-promotion p {
  margin: 0;
}

.profile-promotion h3 {
  font-size: .94rem;
}

.profile-promotion-reward {
  display: block;
  margin-top: 5px;
  color: var(--gold-light);
}

.profile-promotion p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.profile-promotions-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.profile-promotions-links > * {
  width: 100%;
}

.profile-inline-form {
  margin-top: 12px;
}

.profile-field-help {
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.4;
}

.profile-inline-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.profile-checkbox-row {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  cursor: pointer;
}

.profile-checkbox-row input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.profile-push-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 13px;
  font-size: .82rem;
}

.profile-push-summary span,
.profile-push-description,
.profile-push-privacy-note {
  color: var(--muted);
}

.profile-push-summary strong {
  color: var(--gold-light);
  text-align: right;
}

.profile-push-description,
.profile-push-privacy-note {
  line-height: 1.45;
}

.profile-push-description {
  margin: 8px 0 12px;
  font-size: .8rem;
}

.profile-push-actions {
  display: grid;
  gap: 8px;
}

.profile-push-actions > * {
  width: 100%;
}

.profile-account-content {
  display: grid;
  justify-items: start;
  padding-top: 14px;
}

.profile-account-content h2,
.profile-account-content p {
  margin: 0;
}

.profile-account-content h2 {
  font-size: 1rem;
}

.profile-account-content > p {
  margin-top: 7px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}

.danger-button.profile-delete-trigger {
  display: inline-flex;
  width: auto;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(169, 66, 62, .58);
  border-radius: 8px;
  background: transparent;
  color: #d98d89;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.1;
}

.danger-button.profile-delete-trigger:hover {
  border-color: rgba(217, 141, 137, .78);
  background: rgba(169, 66, 62, .1);
  color: #efaaa6;
}

.profile-delete-modal-panel {
  width: min(520px, 100%);
}

.profile-delete-copy {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.profile-delete-copy p {
  margin: 0 0 10px;
}

.profile-delete-copy ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

#deleteProfileForm {
  margin-top: 16px;
}

.profile-push-privacy-note {
  margin: 10px 0 0;
  font-size: .72rem;
}

.new-client-profile-form {
  margin-top: 16px;
  text-align: left;
}

.new-client-profile-intro {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.profile-claim-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

body.profile-modal-open {
  overflow: hidden;
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-items: center;
  justify-items: center;
  padding:
    max(10px, env(safe-area-inset-top))
    max(8px, env(safe-area-inset-right))
    max(10px, env(safe-area-inset-bottom))
    max(8px, env(safe-area-inset-left));
}

.profile-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .76);
}

.profile-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-width: 100%;
  max-height: calc(
    100dvh -
    max(20px, env(safe-area-inset-top)) -
    max(20px, env(safe-area-inset-bottom))
  );
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding:
    18px
    max(18px, env(safe-area-inset-right))
    calc(18px + env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
  border: 1px solid rgba(240, 185, 47, .32);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, .55);
}

.profile-modal-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  margin-bottom: 14px;
}

.profile-modal-heading h2 {
  margin: 0;
  font-size: 1.25rem;
}

.profile-modal-close {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  align-self: start;
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}
.profile-modal-state { padding: 24px 0; color: var(--muted); text-align: center; }
.profile-appointment-details { padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--panel-2); }
.profile-appointment-details div { align-items: flex-start; }
.profile-permission-message { margin: 10px 0 0; font-size: .8rem; }
.profile-modal-actions { display: grid; gap: 9px; margin-top: 14px; }
.danger-button { min-height: 44px; padding: 10px 14px; border: 1px solid #a9423e; border-radius: 10px; background: #7f2926; color: #fff; font-weight: 800; cursor: pointer; }
.profile-reschedule-editor { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.profile-reschedule-editor h3 { margin: 0 0 12px; font-size: 1rem; }
.profile-reschedule-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.profile-reschedule-review { display: grid; gap: 6px; margin-top: 12px; padding: 11px; border-radius: 10px; background: var(--panel-2); color: var(--muted); font-size: .8rem; }
.profile-reschedule-review strong { color: var(--text); }

.history-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.history-row:last-child { border-bottom: 0; }
.history-row-main { display: grid; gap: 4px; min-width: 0; }
.history-row-main span { color: var(--muted); font-size: .82rem; overflow-wrap: anywhere; }
.history-row-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.history-row-actions .small-button { flex: 1 1 130px; }
.history-prices { display: grid; align-content: start; gap: 4px; text-align: right; }
.history-prices span { color: var(--muted); font-size: .75rem; }
.history-prices strong { color: var(--gold-light); }

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 699px) {
  .profile-card-grid, .profile-primary-actions { grid-template-columns: 1fr; }
  .profile-promotions-links { grid-template-columns: 1fr; }
  .profile-home-heading { align-items: center; }
  .profile-home-heading h1 { font-size: clamp(1.45rem, 8vw, 1.8rem); }
  .profile-card { padding: 14px; }
  .profile-primary-actions,
  .profile-inline-actions { grid-template-columns: 1fr; }
  .profile-primary-actions > *,
  .profile-inline-actions > *,
  .profile-modal-actions > * { width: 100%; }
  .profile-accordion-trigger { min-height: 48px; padding: 13px; }
  .profile-accordion-content { padding: 0 13px 13px; }
  .history-row { grid-template-columns: 1fr; }
  .history-prices { text-align: left; }
  .profile-reschedule-fields { grid-template-columns: 1fr; }
  .profile-modal-panel { padding-top: 15px; }
  .loyalty-stars { gap: 1px 2px; }
  .loyalty-star { font-size: 1.05rem; }
}

@media (max-width: 420px) {
  .profile-promotions-accordion .profile-accordion-trigger {
    gap: 10px;
    padding: 13px;
  }

  .profile-promotions-heading {
    gap: 7px;
  }
}

@media (min-width: 700px) {
.profile-modal { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .profile-accordion-trigger > span:last-child { transition: none; }
}
/* =========================================================
   INSTALL FADECO APP
   ========================================================= */

.profile-install-card {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 17px;
  border: 1px solid rgba(240, 185, 47, 0.45);
  border-radius: 15px;
  background:
    linear-gradient(
      135deg,
      rgba(240, 185, 47, 0.1),
      rgba(240, 185, 47, 0.025)
    ),
    var(--panel);
}

.profile-install-copy {
  min-width: 0;
}

.profile-install-copy h2 {
  margin: 0 0 7px;
  font-size: 1.08rem;
}

.profile-install-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.profile-install-actions {
  display: grid;
  gap: 7px;
  min-width: 180px;
}

.profile-install-message {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.78rem;
  line-height: 1.45;
}

.profile-install-modal-panel {
  width: min(480px, 100%);
}

.ios-install-steps {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.5;
}

.ios-install-steps li::marker {
  color: var(--gold);
  font-weight: 800;
}

.ios-install-steps strong {
  color: var(--gold-light);
}

.profile-install-note {
  margin: 18px 0;
  padding: 11px;
  border-radius: 10px;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 699px) {
  .client-notification-prompt {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .client-notification-prompt-actions {
    min-width: 0;
  }

  .client-notification-prompt-actions > * {
    width: 100%;
  }

  .profile-install-card {
    grid-template-columns: 1fr;
  }

  .profile-install-actions {
    min-width: 0;
  }

  .profile-install-actions > * {
    width: 100%;
  }
}
