/* Global overrides and shared styles for the Market Cipher page */

.mc-page {
  background: var(--color-surface-primary);
  color: var(--color-text-primary);
  font-family: var(--font-family-body);
}

/* Ensure material icons render correctly site-wide for this page */
.mc-page .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Selection styling */
.mc-page ::selection {
  background: var(--color-brand-secondary);
  color: var(--color-text-inverse);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
