/* see notes/tags_from_excerpt.md for documentation */

.styled-word {
    /* Your styles here */
    /* color: #000000;
    background-color: #f2f0fe;
    font-weight: bold; */
    background-color: #f2f0fe;  /* Example background color (blue) */
    color: black;               /* Text color */
    padding: 0.05em 0.25em 0.05em 0.25em; /* top right bottom left */    /* Padding around the text */
    border-radius: 12px;       /* Rounded corners */
    font-size: 0.775rem;       /* Optional: slightly smaller font */
	line-height: 1.6;
    display: inline-block;     /* Allows padding and border-radius to apply nicely */
    font-weight: 600;          /* Optional: make text a bit bolder */
    user-select: none;         /* Optional: prevent text selection */
}