/* Container for categories */
.peepso-categories {
    display: inline;  /* Display everything inline */
}

/* Individual category badge */
.peepso-category-badge {
    display: inline;   /* Keep categories in a single line */
    font-size: 10px;   /* Consistent text size */
    color: #333;       /* Text color */
}

/* Icon styling */
.peepso-category-badge i {
    color: #FF9900;    /* Icon color */
    margin-right: 2px; /* Space between icon and text */
}

/* Add comma after each category */
.peepso-category-badge::after {
    content: ", ";     /* Add comma and space */
}

/* Remove the comma for the last category */
.peepso-category-badge:last-child::after {
    content: "";       /* No comma after the last one */
}

