/**
* jgam_asset_management Public
* This could also include bespoke CSS for my other plugins per site.
*/
#jgam_faq_search_container {
    text-align: center;
}

#jgam_faq_global_search {
    margin-bottom: 20px;
    width: 60%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.jgam_faq_container {
    margin-bottom: 30px;
}

.jgam_faq_item {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background: #f9f9f9;
    margin-bottom: 10px;
}

.jgam_faq_item.hidden {
    display: none !important;
}

.jgam_faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 10px;
    width: 100%;
    text-transform: capitalize;
}

.jgam_faq_title {
    flex-grow: 1;
    text-align: left;
}

.jgam_faq_icon {
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
}

.jgam_faq_answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    font-size: 16px;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    text-align: left;
}

.jgam_faq_item.open .jgam_faq_answer {
    max-height: 500px;
    padding-top: 10px;
}

.jgam_faq_pagination {
    margin-top: 15px;
}

.jgam_faq_pagination a {
    margin: 0 5px;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.jgam_faq_pagination .current {
    font-weight: bold;
}

.jgam_faq_no_results {
    margin: 10px 0;
    font-style: italic;
    color: #666;
}

.jgam_add_sticky_tabs {
    position: fixed !important;
    top: 61px;
    left: 0;
    right: 0;
    z-index: 9;
    background: #fff;
    /*   border-bottom: 1px solid #fe7404;*/
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.2);
}

.jgam_add_sticky_tab_no_shadow {
    box-shadow: none !important;
}

.jgam_add_sticky_tab_move_breadcrumb {
    top: 103px !important;
}

@media (max-width: 768px) {
    .jgam_add_sticky_tabs {
        position: initial !important;
        width: 100%;
    }
}