.config-form-container{
    width: 100%;
    display: flex;
    gap: 20px;
}

.config-form-left, .config-form-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.config-form-left {
    border-right: 1px solid #eeeeee;
    padding-right: 20px;
}

.pagination-options-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

.align-color-inrow{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.sb-tab-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.sb-tab-divider{
    width: 20%;
    background: #fff;
    text-align: center;
    padding: 4px;
    color: #23282d;
    border: 1px solid #e2e2e2;
    white-space: nowrap;
    font-size: 14px;
}

.sb-tab-divider:hover{
    cursor: pointer;
    box-shadow: 0 -3px 5px #e6e6e6;
    font-weight: 500;
}

.sb-tab-divider-active{
    font-weight: 400;
    background: #EEEEEE;
    border-bottom: 1px solid #ddd;
}

.sb-tab-divider-active:hover{
    font-weight: 400;
}

.sb-tab-content {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    margin-top: -1px;
    padding: 0 10px;
}

.sb-tab-content > div {
    display: flex;
    flex-direction: column;
}

.disable-pagination{
    color: #ddd !important;
}

.config-form-left::-webkit-scrollbar, .config-form-right::-webkit-scrollbar, #BlankTemplatesList::-webkit-scrollbar{
    width: 5px;
}

.config-form-left::-webkit-scrollbar-track, .config-form-right::-webkit-scrollbar-track, #BlankTemplatesList::-webkit-scrollbar-track {
    background: #dddddd;
}

.config-form-left::-webkit-scrollbar-thumb, .config-form-right::-webkit-scrollbar-thumb, #BlankTemplatesList::-webkit-scrollbar-thumb {
    background: var(--sunDefault);
}

.config-form-left::-webkit-scrollbar-thumb:hover, .config-form-right::-webkit-scrollbar-thumb:hover, #BlankTemplatesList::-webkit-scrollbar-thumb:hover {
    transition: width 2s;
}