/**
 * شريط الحساب الثابت خارج account.html — position: fixed بنفس ألوان الموقع.
 */
:root {
  --account-global-top: 64px;
  --account-global-sidebar-w: 268px;
}

body.has-account-global-sidebar {
  padding-inline-start: calc(var(--account-global-sidebar-w) + 24px);
}

.account-sidebar--global {
  position: fixed;
  z-index: 28;
  width: var(--account-global-sidebar-w);
  max-width: min(var(--account-global-sidebar-w), calc(100vw - 24px));
  top: calc(var(--account-global-top) + env(safe-area-inset-top, 0px));
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  inset-inline-start: max(12px, env(safe-area-inset-left, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.account-sidebar__to-account {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(224, 49, 49, 0.95);
  text-decoration: none;
  border: 1px solid rgba(224, 49, 49, 0.42);
  background: rgba(224, 49, 49, 0.08);
  transition:
    background 0.15s,
    border-color 0.15s;
}

.account-sidebar__to-account:hover {
  background: rgba(224, 49, 49, 0.15);
  border-color: rgba(224, 49, 49, 0.65);
}

@media (max-width: 960px) {
  body.has-account-global-sidebar {
    padding-inline-start: 0;
  }

  .account-sidebar--global {
    display: none;
  }
}
