/* ============================================================
   DICIP BASE
   True global resets only. Nothing page-specific lives here.
   ============================================================ */

html, body {
  overflow-x: hidden;
}

body {
  background-color: var(--dicip-bg-page);
  color: var(--dicip-text-primary);
  font-family: var(--mud-typography-default-family);
  scrollbar-color: #D1D5DB var(--dicip-bg-page);
  scrollbar-width: thin;
}

html, body * {
  scrollbar-color: #C4C4C4 transparent;
  scrollbar-width: thin;
}

#app {
  min-height: 100vh;
}

code {
  color: #C02D76;
}

/* Links — single consistent style, no theme branching */
a.mud-primary-text,
a.mud-dark-text {
  color: var(--dicip-primary);
  text-decoration: none;
}

a.mud-primary-text:hover,
a.mud-dark-text:hover {
  text-decoration: underline;
}

/* MudDivider — single consistent style across the app */
.mud-divider {
  border-color: var(--dicip-border-soft);
}
