/* Copied from admin base.css */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text-primary);
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
a { color: var(--primary-color); text-decoration: none; }

h3 { font-size: 1em; font-weight: 700; color: var(--primary-color); }

@keyframes spin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
