/* TeleDK v1.0.111 — site-wide minimum font-size baseline */
:root{
  --teledk-min-font-size:12px;
}

/*
 * Immediate baseline for the most common text controls.
 * The companion runtime script enforces the 12px minimum against
 * page-specific rules loaded earlier without reducing larger text.
 */
html,
body{
  font-size:var(--teledk-min-font-size);
}

button,
input,
select,
textarea,
option,
optgroup,
label,
small,
summary,
caption,
legend{
  font-size:var(--teledk-min-font-size)!important;
}

/* Keep compact controls usable after the text floor is raised. */
button,
input,
select,
textarea{
  line-height:1.35;
}

/* Never use the font floor as an icon sizing mechanism. */
svg,
svg *,
.lucide,
.lucide-icon{
  font-size:inherit;
}
