/* === Global typography bump for readability === */

/* 1) Make everything ~50% bigger
   Original root font-size is 16px, we bump to 24px (150%).
   Since Pulse uses rem units, this scales all rem-based text. */
html {
    font-size: 110%; /* 25% bigger overall */
}

/* 2) Make body text slightly bolder for easier reading */
body,
p,
li,
label,
span,
a,
input,
select,
textarea,
button,
.form-control {
    font-weight: 450; /* was 400 in the original theme */
}

/* Optional: if some tiny UI bits get too big, you can nudge them back, e.g. */

.small,
.text-muted {
    font-size: 0.85rem;
    font-weight: 400;
}
