/* Dietpa admin — monochrome accents on top of Tailwind CDN */
:root {
  color-scheme: light;
}

::selection {
  background: #000;
  color: #fff;
}

/* Native dialog backdrop */
dialog::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

dialog {
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 0;
  max-width: min(32rem, calc(100vw - 2rem));
}

/* Form focus — crisp black ring */
.dietpa-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
}

/* Chart canvas — stay neutral */
canvas {
  filter: grayscale(1);
}
