.account-logout > button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #dfe5ee;
  border-radius: 999px;
  background: white;
  color: #2038ed;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.account-logout > button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.account-logout > p {
  max-width: 220px;
  font-size: 14px;
  color: #a51d2d;
}
.account-logout > button:focus-visible {
  outline: 2px solid #2038ed;
  outline-offset: 3px;
}
.customer-account {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px;
  color: #1e293b;
  font:
    16px/1.5 Arial,
    sans-serif;
}
.customer-account header,
.customer-account nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.customer-account header {
  justify-content: space-between;
}
.customer-account h1 {
  font-size: 32px;
  margin: 0;
}
.customer-account a {
  color: #2038ed;
}

.account-deletion {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
  max-width: 620px;
}
.account-deletion h2 {
  font-size: 22px;
}
.account-deletion button {
  min-height: 44px;
  border: 1px solid #9d2424;
  background: white;
  color: #9d2424;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
  margin: 8px 12px 8px 0;
}
.account-deletion button:disabled {
  opacity: 0.5;
  cursor: default;
}
.account-deletion label {
  display: block;
  margin-top: 12px;
}
.account-deletion input:not([type="checkbox"]) {
  display: block;
  font: inherit;
  padding: 10px;
  width: min(100%, 280px);
  box-sizing: border-box;
}
.account-deletion .account-deletion-device {
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-deletion input[type="checkbox"] {
  flex: none;
  width: 20px;
  height: 20px;
}
.account-deletion :focus-visible {
  outline: 2px solid #183fe5;
  outline-offset: 3px;
}
.site-account-menu {
  position: relative;
  display: flex;
  align-items: center;
}
.site-account-popover {
  position: absolute;
  z-index: 100;
  right: 0;
  top: 100%;
  width: 250px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e1e3e6;
  box-shadow: 0 18px 45px #10182018;
  display: grid;
  gap: 4px;
  color: #202522;
}
.site-account-popover > a,
.site-account-popover .account-logout button {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  font-size: 15px;
}
.site-account-popover > a:hover,
.site-account-popover > a:focus-visible,
.site-account-popover .account-logout button:hover,
.site-account-popover .account-logout button:focus-visible {
  background: #f5f6fa;
}
.site-account-popover .account-logout {
  margin: 0;
  padding: 0;
}
.site-account-popover .account-logout button {
  width: 100%;
  border: 0;
  border-radius: 0;
  text-align: left;
  padding: 12px;
  color: inherit;
}
.admin-section-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #dfe3eb;
  margin: 26px 0;
  overflow-x: auto;
}
.admin-section-nav a {
  display: block;
  padding: 13px 22px;
  white-space: nowrap;
  color: #52616c;
  text-decoration: none;
  font:
    500 14px/1.5 Arial,
    sans-serif;
  border-bottom: 2px solid transparent;
}
.admin-section-nav a[aria-current] {
  color: #2439ee;
  border-bottom-color: #2439ee;
}
.admin-section-nav a:hover {
  background: #f1f3ff;
}
.admin-section-nav a:focus-visible {
  outline: 2px solid #2439ee;
  outline-offset: -3px;
}
.admin-main {
  padding-top: 20px;
}
.admin-section-nav ~ .admin-main {
  margin-top: 0;
}
