.author-country-flag {
    /* Set the flag height relative to the font size */
    height: 1em;
    width: auto;
    /* Vertically align the flag in the middle of the text */
    vertical-align: middle;
    /* Add a subtle border */
    border: 1px solid #ddd;
    display: inline-block;
}

/* Style for LTR (Left-to-Right) languages - Add space BEFORE the flag */
.author-country-flag {
    margin-left: 6px;
    margin-right: 0;
}

/* Style for RTL (Right-to-Left) languages - Add space BEFORE the flag */
html[dir="rtl"] .author-country-flag {
    margin-left: 0;
    margin-right: 6px;
}