/* Shared readable type scale for the admin and teacher/coaching portals. */
:root {
  --text-body: 1rem;
  --text-label: 0.9375rem;
  --text-caption: 0.875rem;
}

/* Admin uses a compact scale; teacher/coaching portal sizes stay unchanged. */
:root.admin-ui {
    --text-body: 0.875rem;
    --text-label: 0.8125rem;
    --text-caption: 0.75rem;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-size: var(--text-body);
    line-height: 1.5;
}

button, input, select, textarea {
    font: inherit;
}

input, select, textarea {
    font-size: var(--text-body);
}

small {
    font-size: var(--text-caption);
}
