/* Category Bubbles styling */
.faq-categories-container {
    margin-bottom: 15px;
}

.faq-category-bubble {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background-color: #f1f1f1;
    /* Inactive background color */
    color: #000;
    /* Inactive text color */
    border: 1px solid #ccc;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}

.faq-category-bubble.active {
    background-color: #083156;
    /* Active background color */
    color: #fff;
    /* Active text color */
    border-color: #083156;
}

.faq-category-bubble:hover {
    background-color: #DDE7F3;
    /* Hover background color */
    color: #083156;
    border-color: #083156;
}

.faq-category-bubble:focus {
    background-color: #083156 !important;
    outline: none;
    box-shadow: 0 0 0 1px #083156;
    color: white;
    border-color: #083156 !important;
}

/* Highlighting for search terms */
.highlight {
    background-color: yellow;
}

/* Adjust margins to fit your layout */
.dio-faq-search {
    margin-bottom: 15px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
}