:root {
    --dark_blue : #0e2a78;
}
.custom-tabs_plugin {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 15px;
}

.custom-tabs_plugin ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    /*display: flex;*/
    /*border-bottom: 1px solid #ddd;*/
}
/*
.custom-tabs_plugin ul li {
    margin-right: 15px;
}
*/
.custom-tabs_plugin ul li a.tabs_plugin {
    text-decoration: none;
    padding: 0px 15px !important;
    /*display: block;*/
    border: 1px solid #ddd !important;
    /*border-radius: 5px 5px 0 0 !important;*/
    background-color: #3b5bb6 !important;
    /*background-color: rgb(25,99,130) !important;*/
    color: #fff;
    font-size: 20px;

}

.custom-tabs_plugin ul li a.tabs_plugin:hover,
.custom-tabs_plugin ul li a.tabs_plugin.active {
    background-color: #005177;
    background-color:#ad2a24 !important;

    background-color: #005177;
    background-color: var(--tie-buttons-color) !important;
    background-color: #3b5bb6 !important;
    border-top: 5px solid #a2abc3 !important
}

.custom-tabs_plugin > div {
    display: none;
}

.custom-tabs_plugin > div.active {
    display: block;
}
/*
.entry ul li{
    list-style: none !important;
    display: inline-block;
}
*/
.entry li, .comment-content li {
    margin: 0 !important;
}
.entry ul {
    margin: 0 !important;
    padding: 0 !important;
}

/* General tab container styling */
.custom-tabs_plugin-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

/* Tab headers styling */
.custom-tabs_plugin-header {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.custom-tab-header {
    flex: 1;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
}

.custom-tab-header.active {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    color: var(--dark_blue); /* Color for the active tab */
}

/* Tab content styling */
.custom-tab-content {
    display: none;
    padding: 15px;
}

.custom-tab-content.active {
    display: block;
}

/* Individual tab border */
.custom-tab {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}


.custom-tabs_plugin li {
    display: inline-block;
}

div.tabs_plugins.active li{
    list-style: initial !important;
    display: list-item !important;
    margin-left: 28px !important;
    margin-right: 0;
} 

@media (max-width: 991px) and (min-width: 768px) {
    .custom-tabs_plugin ul li a.tabs_plugin {
        font-size: 20px;
    }
} 