:root {
  --money-maker-a11y-text-scale: 1;
  --money-maker-a11y-blue: #0b7fc2;
  --money-maker-a11y-border: #d4e0ef;
  --money-maker-a11y-text: #101827;
  --money-maker-a11y-muted: #3e4b5e;
}

.money-maker-a11y-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #064b76;
  border: 2px solid var(--money-maker-a11y-blue);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.money-maker-a11y-skip:focus {
  transform: translateY(0);
}

.money-maker-a11y-button {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99990;
  width: 56px;
  height: 56px;
  padding: 7px;
  border-radius: 50%;
  border: 2px solid #cfe0f2;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 35, 55, 0.18);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.money-maker-a11y-button:hover,
.money-maker-a11y-button:focus-visible {
  border-color: var(--money-maker-a11y-blue);
  box-shadow: 0 0 0 4px rgba(11, 127, 194, 0.18), 0 12px 28px rgba(15, 35, 55, 0.18);
  outline: none;
}

.money-maker-a11y-button img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.money-maker-a11y-panel {
  position: fixed;
  bottom: 84px;
  right: 16px;
  z-index: 99989;
  width: min(560px, calc(100vw - 28px));
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--money-maker-a11y-border);
  border-radius: 18px;
  background: #ffffff;
  color: var(--money-maker-a11y-text);
  box-shadow: 0 24px 60px rgba(15, 35, 55, 0.25);
}

.money-maker-a11y-panel[hidden] {
  display: none !important;
}

.money-maker-a11y-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.money-maker-a11y-panel h2,
.money-maker-a11y-panel h3,
.money-maker-a11y-panel h4,
.money-maker-a11y-panel p {
  margin: 0;
  color: var(--money-maker-a11y-text);
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.money-maker-a11y-panel h2 {
  font-size: 20px;
  font-weight: 850;
}

.money-maker-a11y-panel h3 {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 850;
}

.money-maker-a11y-panel h4 {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 850;
}

.money-maker-a11y-panel p,
.money-maker-a11y-panel li {
  font-size: 15px;
  line-height: 1.65;
}

.money-maker-a11y-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #cfe0f2;
  background: #ffffff;
  color: #1f2a3a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.money-maker-a11y-close:hover,
.money-maker-a11y-close:focus-visible {
  border-color: var(--money-maker-a11y-blue);
  outline: 3px solid rgba(11, 127, 194, 0.22);
}

.money-maker-a11y-size {
  margin: 6px 0 12px;
  color: var(--money-maker-a11y-muted);
  font-weight: 750;
}

.money-maker-a11y-options {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.money-maker-a11y-option {
  width: 100%;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #cfdaea;
  border-radius: 999px;
  background: #ffffff;
  color: var(--money-maker-a11y-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 850;
  cursor: pointer;
  text-align: left;
}

.money-maker-a11y-option::after {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #9baac0;
  background: #ffffff;
}

.money-maker-a11y-option[aria-pressed="true"]::after {
  background: var(--money-maker-a11y-blue);
  border-color: var(--money-maker-a11y-blue);
  box-shadow: inset 0 0 0 2px #ffffff;
}

.money-maker-a11y-option:hover,
.money-maker-a11y-option:focus-visible {
  border-color: var(--money-maker-a11y-blue);
  outline: 3px solid rgba(11, 127, 194, 0.16);
}

.money-maker-a11y-statement {
  border-top: 1px solid var(--money-maker-a11y-border);
  padding-top: 14px;
}

.money-maker-a11y-statement ul {
  padding-left: 22px;
}

.money-maker-a11y-statement a {
  color: #075fa3;
  font-weight: 850;
}

html.money-maker-a11y-text-adjusted body {
  zoom: var(--money-maker-a11y-text-scale);
}

html.money-maker-a11y-contrast body {
  background: #000000 !important;
  color: #ffffff !important;
}

html.money-maker-a11y-contrast body,
html.money-maker-a11y-contrast body *:not(svg):not(path) {
  color: #ffffff !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

html.money-maker-a11y-contrast .panel,
html.money-maker-a11y-contrast .auth-card,
html.money-maker-a11y-contrast .auth-hero-panel,
html.money-maker-a11y-contrast .stat-card,
html.money-maker-a11y-contrast .control-card,
html.money-maker-a11y-contrast .executive-card,
html.money-maker-a11y-contrast .money-maker-a11y-panel {
  background: #111111 !important;
  border-color: #ffffff !important;
}

html.money-maker-a11y-contrast input,
html.money-maker-a11y-contrast textarea,
html.money-maker-a11y-contrast select,
html.money-maker-a11y-contrast button {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

html.money-maker-a11y-contrast .primary-button,
html.money-maker-a11y-contrast .secondary-button,
html.money-maker-a11y-contrast .danger-button,
html.money-maker-a11y-contrast .ghost-button {
  background: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

html.money-maker-a11y-contrast a {
  color: #ffff00 !important;
}

html.money-maker-a11y-highlight-links a:not(.money-maker-a11y-skip) {
  color: #0046d5 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px !important;
  outline: 2px solid rgba(0, 70, 213, 0.18);
  outline-offset: 2px;
}

html.money-maker-a11y-readable-font body,
html.money-maker-a11y-readable-font button,
html.money-maker-a11y-readable-font input,
html.money-maker-a11y-readable-font textarea,
html.money-maker-a11y-readable-font select {
  font-family: Verdana, "Segoe UI", Tahoma, sans-serif !important;
}

html.money-maker-a11y-keyboard *:focus-visible {
  outline: 4px solid #ffbf00 !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.38) !important;
}

html.money-maker-a11y-pause-animations *,
html.money-maker-a11y-pause-animations *::before,
html.money-maker-a11y-pause-animations *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 640px) {
  .money-maker-a11y-button {
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  .money-maker-a11y-button img {
    width: 34px;
    height: 34px;
  }

  .money-maker-a11y-panel {
    bottom: 68px;
    right: 8px;
    left: 8px;
    width: auto;
    max-height: calc(100vh - 78px);
    padding: 14px;
    border-radius: 16px;
  }
}
