/* 
Goal
    Make controls easier to activate.
What to do
    Ensure targets meet a minimum size or have sufficient spacing around them.
Why it's important
    Some people with physical impairments cannot click small buttons that are close together. 
https://www.w3.org/WAI/WCAG22/Understanding/target-size-minimum.html */
a {
    display: inline-block;
    min-width: 44px;
}