/* ==========================================================================
   Flexible Taxonomy Widget - Styles
   ========================================================================== */

.custom-pill-tags-widget {
    font-family: 'Open Sans', sans-serif;
}

.custom-pill-tags-widget .widget-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #000000;
}

.custom-pill-tags-widget .widget-divider {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 25px;
}

.custom-pill-tags-widget .pill-tags-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 10px;
}

.custom-pill-tags-widget .pill-tag {
    display: inline-block;
    background-color: #DADAF5; 
    color: #403FEE;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.custom-pill-tags-widget .pill-tag:hover,
.custom-pill-tags-widget .pill-tag:focus {
    text-decoration: none;
}

.custom-pill-tags-widget .pill-tag:hover,
.custom-pill-tags-widget .pill-tag.active {
    background-color: #403FEE; 
    color: #ffffff;
}
