/* SMARTCO_UI_GLOBAL_FONT_SIZE_REDUCTION_v1_0
   Purpose: reduce the application typography by one step globally while preserving hierarchy.
   Implementation: 15px root font size equivalent (93.75% of browser default 16px).
*/
:root {
    --smartco-root-font-size: 93.75%;
}

html {
    font-size: var(--smartco-root-font-size);
}

body,
button,
input,
select,
textarea {
    font-family: "Vazirmatn", "Vazir", "IRANSans", "Segoe UI", Tahoma, Arial, sans-serif;
}

button,
input,
select,
textarea {
    font-size: inherit;
}

/* Keep code readable but aligned with the global one-step reduction. */
code,
pre,
kbd,
samp {
    font-size: 0.92em;
}
