@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/**
 <weight>: Use a value from 300 to 800
 <uniquifier>: Use a unique and descriptive class name
**/
:root {
    --primarycolor:#7030A0;
    --black:#262627;
    --white: #ffffff;
    --secondarycolor:#FF5252;
    --textcolor:#43424a;
    --title_fontsize:28px;
    --action_button_black:#494A50;
    --action_button_white:#EEE6F4;
    --light_button_color:#e7d8f3;
    --success_green_color:#17AE7B;
    --subtitle_fontsize:20px;
    --text_fontsize:15px;
    --label-fontsize:17px;
    --text_field_font_size:15px;
    --textfield_width:100%;
    --textfield_layout_width:100%;
    --login_page_width:30%;
    --pricing_page_width:95%;
    --container-width: 95%;
    --button-fontsize:16px;
    --message-button-fontsize:16px;
    --checkboxwidth_cceptterms:45px;
    --quickbooks_green:#2CA01C;
    --quickbooks_green_hover:#108000;

}
/* 300 - Light */
.open-sans-light {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 400 - Regular / Normal */
.open-sans-regular {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 500 - Medium */
.open-sans-medium {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 600 - SemiBold */
.open-sans-semibold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 700 - Bold */
.open-sans-bold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 800 - ExtraBold */
.open-sans-extrabold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}



/* 100 - Thin */
.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 200 - Extra Light */
.roboto-extra-light {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 300 - Light */
.roboto-light {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 400 - Regular */
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 500 - Medium */
.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 600 - SemiBold */
.roboto-semi-bold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 700 - Bold */
.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 800 - Extra Bold */
.roboto-extra-bold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* 900 - Black */
.roboto-black {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

html, body{
    margin: 0;
    scroll-behavior: smooth;
    height: 100%;

}

.title-font-size{
    font-size:var(--title_fontsize) ;
}

.display-flex{
    display: flex;
}
.flex-direction-column{
    flex-direction: column;
}
.flex-direction-row{
    flex-direction: row;
}
.justify-content-center {
    justify-content: center;
}
.align-items-center {
    align-items: center;
}
.textfield-layout-width{
    width: var(--textfield_layout_width) ;
    padding-top: 12px;
    padding-bottom: 12px;
}

.textfield-width{
    width: var(--textfield_width) ;
}
.login-page-width{
    width: var(--login_page_width) ;
}

.pricing_page-width{
    width: var(--pricing_page_width) ;
}

.accepttermslayout{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.acceptterms_checkbox{
    width: var(--checkboxwidth_cceptterms) ;
    height: var(--checkboxwidth_cceptterms);
    accent-color: var(--primarycolor);
}

.container{
    width: var(--container-width);
    margin-top: 25px;

}

.textfield-label{
    font-size: var(--label-fontsize);
    color: var(--black);
    margin-top: 3px;
    margin-bottom: 3px;

}

.default-textfield {
    font-size: var(--text_field_font_size) ;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 6px;
    width: 95%;
    border: 1px solid black;

}

.password-field{
    position: relative;
    width: 100%;
}

.password-input{
    box-sizing: border-box;
    width: 100%;
    padding-right: 44px;
}

.password-toggle{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: #6B6C72;
}

.password-toggle:hover{
    cursor: pointer;
    color: var(--primarycolor);
}

.password-toggle-icon{
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.password-toggle-icon-hide{
    display: none;
}

.password-toggle.is-visible .password-toggle-icon-show{
    display: none;
}

.password-toggle.is-visible .password-toggle-icon-hide{
    display: block;
}

.phone-field{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.phone-code-select{
    box-sizing: border-box;
    width: 32%;
    margin-top: 6px;
    margin-bottom: 6px;
}

.phone-number-input{
    box-sizing: border-box;
    width: 63%;
}

.drop_down_width{
    box-sizing: border-box;
    width: 100%;
}
.default-button,.messagebutton,.messagebuttonedit, .messagebuttonapprove,.messagebuttondeny,.connect-quickbooks-default{
   
    padding: 12px 12px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: var(--message-button-fontsize);
   

}

.messagebuttondeny{
     background-color: #808080;
    color: white;
    width: 20%;
    margin-left: 10px;
    margin-right: 10px;
     border: 1px solid #808080;
}
.messagebuttondeny:hover{
    cursor: pointer;
}

.messagebuttonapprove{
    background-color:#33cc33;
    color: white;
    width: 20%;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #33cc33;
}
.messagebuttonapprove:hover{
    cursor: pointer;
}

.messagebuttonedit{
    background-color: #b31aff;
    color: white;
    width: 20%;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #b31aff;
}

.messagebuttonedit:hover{
    cursor: pointer;
}

.messagebutton{
     background-color: var(--primarycolor);
    color: var(--white);
    width: 20%;
    margin-left: 10px;
    margin-right: 10px;
     border: 1px solid var(--primarycolor);
}

.default-button{
     background-color: var(--primarycolor);
    color: var(--white);

     border: 1px solid var(--primarycolor);
}

.connect-quickbooks-default{
    background-color: var(--quickbooks_green);
    color: var(--white);

    border: 1px solid var(--quickbooks_green);
}
.connect-quickbooks-default, .default-button{
    width: 70%;
}

.connect-quickbooks-default:hover{
    background-color: var(--quickbooks_green_hover);
    border: 1px solid var(--quickbooks_green_hover);
    cursor: pointer;
}
.default-button:hover, .messagebutton:hover, .messagebuttondeny:hover{
    cursor: pointer;

}

.renewbutton,.cancelbutton{

    color: var(--white);
    padding: 8px 15px;
    margin-left: 10px;
    margin-right: 10px;
   ;

}
.cancelbutton{
 background-color: #ef4444;
    border: 1px solid #ef4444;
    display: none;

}
.renewbutton{
    background-color: var(--primarycolor);
    display: none;
    border: 1px solid var(--primarycolor)
}
.renewbutton:hover,.cancelbutton:hover{
    cursor: pointer;
}

.messagetext{
    font-size: var(--text_fontsize);
    text-align: justify;
}
.default_link{
    font-size: var(--text_fontsize);
    text-decoration: none;
    color: var(--black);
}
.default_link:hover{
    cursor: pointer;
    text-decoration: underline;
    color: var(--primarycolor);
    margin-top: 6px;
    margin-bottom: 6px;
}
.default-text{
    font-size: var(--text_fontsize) ;
    color: var(--black);
}

#step_2, #step_3, #step_4 {
    display: none;
}

#sidebar, #sidebarsettings{
    position: fixed;
    top: 0;
    left: 0;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 2%;
}

#sidebarsettings{
    visibility: hidden;
}

#main_content{
    position: fixed;
    top: 0;
    left: 22%;
    width: 75%;
    padding-left: 2%;
    height: 100vh;      /* or max-height */
    overflow-y: auto;   /* REQUIRED */



}
#sidebarlist{
    list-style: none;

   width: 90%;

}
#sidebarlist li{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 5px;
    margin-bottom: 5px;

}
#sidebarlist li:hover{
    background-color: var(--secondarycolor);
    cursor: pointer;
}

#sidebarlist li img{
    margin-right: 4px;
    width: 30px;
    height: 30px;

}
#sidebarlist li p{
    font-size: var(--text_fontsize);
}
#sidebarlist li p a{
    text-decoration: none;
    color: var(--black);
}

.disconnectlogo{
    margin-top: 20px;
    margin-bottom: 15px
}

.disconnecttitletext{
    font-size: 29px;
    text-align: center;
}
.disconnecttext{
    font-size: 15px;
    text-align: justify;

}

.disconnectlist{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.action_button, .action_button_black,.action_button_white{
    text-decoration: none;
    padding: 8px 12px;
    font-size: var(--button-fontsize);
    border-radius: 5px;
}
.action_button{
    background-color: var(--primarycolor);
    color: var(--white);
    margin-left: 10px;
}
.action_button_black{
    background-color: var(--action_button_black);
    color: var(--white);

}
.action_button_white{

    background-color: var(--action_button_white);
    color: var(--primarycolor);
    margin-right: 12px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;


}

.action_button img, .action_button_black img, .action_button_white img{
    margin-right: 4px;
}

.action_button_white img{

    margin-left: 8px;


    width: 25px;
    height: 25px;
}

.upload_buttons_layout{
    padding-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;

}

.googledrive_folder_group{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 12px;
}

.googledrive_folder_footer{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 6px;
    max-width: 220px;
    white-space: nowrap;
}

.googledrive_folder_label{
    color: #6B6C72;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.googledrive_change_link{
    margin-left: 6px;
    color: var(--primarycolor);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.signoutlayout{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 20px;


}
.signoutlayout img{
    margin-right: 5px;
}

.signoutlayout div p{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

#main_content_title{

}

.step_1_text{
    text-align: center;
    font-size: 25px;
}
.step_1_text span{
    color: var(--primarycolor);
}
.step_1_text_subtitle{
    text-align: center;
    font-size: 15px;
}

#tasks{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    width: 60%;
    margin-top: 25px;
    margin-bottom: 25px;

}



.taskbutton{
    background-color: var(--light_button_color);
    padding: 8px 12px;
    font-size: var(--button-fontsize);
    border: 1px solid var(--primarycolor);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    width: 30%;
    border-radius: 6px;
    margin: 20px 15px 15px;
}
.taskbutton:hover{
    cursor: pointer;
}
.taskbutton img{
    margin-right: 4px;
}
.taskbutton p{
    font-size: var(--text_fontsize);
    text-align: center;
}

#step_1_layout{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;

}

.upload_icon_layout{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

#processinvoice{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#uploadlayout{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pricing_section_layout{
   width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

#processinvoice{
    width: 80%;
}

.upload_item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}
.upload_item div{
    width: 50%;
}
.upload_item div div{
    width: 50%;
}

.upload_item_btns{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}

.upload_item_btns img{
    margin-right: 4px;
    margin-left: 4px;
}

.uploaded_item_status{
    color: var(--success_green_color);
    font-size: var(--text_fontsize);
}

.upload_more_layout div{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

#processinvoice, #uploadlayout, #chatresultsprocess, #pricing_section_layout, #subscriptionlayout, #accountlayout, #integrationslayout{
    display: none;
}

#integrationslayout{
    width: 100%;
    max-width: 760px;
}

#accountlayout{
    width: 100%;
    max-width: 760px;
}

.account_detail_grid{
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.account_detail_grid h3,
.account_detail_grid p{
    margin: 0;
}

.account_detail_grid h3{
    padding: 16px 18px;
    font-size: 14px;
    color: #374151;
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.account_detail_grid > p,
.account_value_action{
    min-height: 52px;
    padding: 16px 18px;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
    box-sizing: border-box;
}

.account_detail_grid h3:last-of-type,
.account_detail_grid > p:last-child{
    border-bottom: 0;
}

.account_value_action{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.account_value_action p{
    min-width: 0;
}

.integration_items{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.integration_item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.integration_item_header{
    display: flex;
    align-items: center;
    gap: 14px;
}

.integration_logo_tile{
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    flex: 0 0 64px;
}

.integration_logo_tile_quickbooks{
    background: #eefaf1;
    border-color: #2ca01c;
}

.integration_logo_tile img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.integration_item h4,
.integration_item p{
    margin: 0;
}

.integration_item p{
    margin-top: 4px;
    font-size: var(--text_fontsize);
    color: #4b5563;
}

.integration_connect_button,
.integration_disconnect_button{
    width: 190px;
    padding: 9px 15px;
    outline: none;
    font-size: 14px;
}

.integration_connect_button{
    background: var(--primarycolor);
    color: #fff;
    border: 1px solid var(--primarycolor);
}

.integration_disconnect_button{
    background: #fff;
    color: #393A3D;
    border: 1px solid #111827;
}

.integration_connect_button:hover{
    cursor: pointer;
}

.integration_disconnect_button:hover{
    border-color: #6B6C72;
    cursor: pointer;
}

.gmail-connect-disclosure{
    text-align: left;
}

.gmail-connect-disclosure p{
    margin: 10px 0 6px;
}

.gmail-connect-disclosure ul{
    margin: 0 0 10px 20px;
    padding: 0;
}

.gmail-connect-disclosure li{
    margin: 4px 0;
}

.attach-options-dialog{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 8px;
}

.attach-option-button{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    cursor: pointer;
}

.attach-option-button:hover{
    border-color: var(--primarycolor);
    background: #f8fafc;
}

.attach-option-button img{
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.drive-file-picker{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 4px;
    text-align: left;
}

.drive-file-option{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.drive-file-option:hover{
    border-color: var(--primarycolor);
    background: #f8fafc;
}

.drive-file-option input{
    margin-top: 3px;
    accent-color: var(--primarycolor);
}

.drive-file-option span{
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.drive-file-option strong{
    color: #111827;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.drive-file-option small,
.drive-file-picker-empty{
    color: #6b7280;
    font-size: 13px;
}

.drive-load-more-button{
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--primarycolor);
    border-radius: 8px;
    background: #fff;
    color: var(--primarycolor);
    cursor: pointer;
}

.bank-statement-dialog{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    padding-top: 4px;
    text-align: left;
    color: #111827;
}

.bank-statement-close-icon{
    position: absolute;
    top: -2px;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.bank-statement-close-icon:hover{
    background: #e5e7eb;
    color: #111827;
    transform: scale(1.03);
}

.bank-statement-popup{
    width: min(680px, 92vw);
    min-width: 0;
    padding: 26px;
    align-items: stretch;
    justify-content: flex-start;
    max-height: 86vh;
    border-radius: 14px;
}

.bank-statement-popup .popup-message{
    width: 100%;
    max-height: calc(86vh - 128px);
    overflow-y: auto;
    padding: 0 4px 2px 0;
    box-sizing: border-box;
    text-align: left;
}

.bank-statement-popup #popup_message_title,
.bank-statement-popup .popup-message-title{
    align-self: stretch;
    margin: 0 42px 18px 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.25;
    text-align: left;
}

.bank-statement-section{
    margin-top: 0;
    padding-top: 18px;
    border-top: 1px solid #edf0f4;
}

.bank-statement-section:first-of-type{
    padding-top: 0;
    padding-right: 46px;
    border-top: 0;
}

.bank-statement-section h3,
.bank-statement-section p{
    margin: 0;
}

.bank-statement-section h3{
    padding-bottom: 0;
    margin-bottom: 10px;
    border-bottom: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
}

.bank-statement-section label{
    display: block;
    margin-bottom: 5px;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
}

.bank-statement-section label span,
.bank-statement-section p,
.bank-statement-hint{
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
}

.bank-statement-file{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafbfc;
}

.bank-statement-file-icon{
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 6px;
    background: #f3eef8;
    color: var(--primarycolor);
    font-size: 12px;
    font-weight: 600;
}

.bank-statement-file div{
    min-width: 0;
    flex: 1;
}

.bank-statement-file strong{
    display: block;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.bank-statement-file p{
    margin-top: 3px;
}

.bank-statement-remove{
    border: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    font-size: 18px;
}

.bank-statement-input{
    box-sizing: border-box;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    line-height: 1.3;
}

.bank-statement-input:focus{
    outline: 2px solid rgba(47, 5, 200, 0.14);
    border-color: var(--primarycolor);
}

.bank-statement-section > .bank-statement-input{
    width: 100%;
    max-width: 360px;
    margin-top: 8px;
}

.bank-statement-account-row{
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    margin-top: 10px;
}

.bank-statement-account-row .bank-statement-input{
    width: 100%;
    max-width: none;
}

.bank-statement-inline-fields{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.bank-statement-inline-fields .bank-statement-input{
    width: 100%;
    min-width: 0;
}

.bank-statement-to{
    color: #6b7280;
}

.bank-statement-actions{
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
    padding-top: 2px;
}

.bank-statement-process{
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--primarycolor);
    border-radius: 6px;
    background: var(--primarycolor);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.bank-statement-process:hover{
    filter: brightness(0.96);
}

.bank-statement-process:disabled,
.bank-statement-input:disabled{
    cursor: not-allowed;
    opacity: 0.72;
}

.popup:has(.bank-review-dialog){
    width: 92vw;
    min-width: 75vw;
    max-width: 1400px;
    padding: 24px;
    border-radius: 8px;
    align-items: stretch;
    box-sizing: border-box;
}

.popup:has(.bank-review-dialog) .popup-message{
    width: 100%;
    max-height: 82vh;
    overflow-y: auto;
    padding-bottom: 0;
    text-align: left;
}

.bank-review-dialog{
    color: #111827;
    font-size: var(--text_fontsize);
}

.bank-review-dialog-title{
    margin: 0 0 10px;
    color: #070b25;
    font-size: 32px;
    line-height: 1.1;
}

.bank-review-overview{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bank-review-overview-header{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: start;
    gap: 16px;
}

.bank-review-post-panel{
    padding: 18px;
    border: 1px solid #e1e6ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bank-review-post-panel p{
    margin: 10px 0 0;
    color: #55658a;
    font-size: 14px;
    text-align: left;
}

.bank-review-post-event{
    width: 100%;
    margin: 12px 0 0;
    padding: 10px 12px;
    border: 1px solid #e6ebf2;
    border-radius: 6px;
    background: #f8fafc;
    box-sizing: border-box;
    color: #394568;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
}

.bank-review-post-event-failed{
    color: #b91c1c;
}

.bank-review-post-event-complete,
.bank-review-post-event-posted{
    color: #047857;
}

.bank-review-stat-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bank-review-stat-card,
.bank-review-state-card,
.bank-review-total-card,
.bank-review-table-card,
.bank-review-side-panel,
.bank-review-assignment,
.bank-review-post-summary,
.bank-review-tip{
    border: 1px solid #e1e6ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.bank-review-stat-card,
.bank-review-state-card{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 124px;
    padding: 13px 16px;
    box-sizing: border-box;
}

.bank-review-stat-card{
    gap: 34px;
}

.bank-review-state-card{
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.bank-review-stat-icon,
.bank-review-large-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #eee6f8;
    color: var(--primarycolor);
    font-weight: 700;
}

.bank-review-stat-icon svg,
.bank-review-large-icon svg,
.bank-review-action-icon svg,
.bank-review-card-action svg,
.bank-review-result-row svg,
.bank-review-row-button svg,
.bank-review-sort-toggle svg,
.bank-review-primary-action svg,
.bank-review-secondary-action svg,
.bank-review-approve-all svg,
.bank-review-assignment-arrow svg,
.bank-review-close svg,
.bank-review-reason-toggle svg{
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bank-review-stat-icon{
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.bank-review-large-icon{
    width: 60px;
    height: 60px;
    font-size: 30px;
}

.bank-review-stat-card strong,
.bank-review-state-card > strong{
    display: block;
    color: #2f05c8;
    font-size: 30px;
    line-height: 1;
}

.bank-review-stat-card h3,
.bank-review-state-card h3{
    margin: 0;
    font-size: 19px;
}

.bank-review-stat-card p,
.bank-review-stat-card small,
.bank-review-state-card small,
.bank-review-subtitle,
.bank-review-side-title p{
    color: #55658a;
}

.bank-review-stat-card p,
.bank-review-state-amount{
    margin: 0;
    font-size: 15px;
}

.bank-review-state-amount{
    font-weight: 600;
}

.bank-review-stat-card small,
.bank-review-state-card small{
    font-size: 14px;
}

.bank-review-primary-action,
.bank-review-secondary-action,
.bank-review-approve-all,
.bank-review-apply,
.bank-review-card-action{
    min-height: 46px;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    max-width: 100%;
    padding: 0 22px;
    white-space: normal;
}

.bank-review-primary-action,
.bank-review-approve-all,
.bank-review-apply{
    border: 1px solid var(--primarycolor);
    background: var(--primarycolor);
    color: #fff;
}

.bank-review-button-loader{
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bankReviewSpin 0.75s linear infinite;
}

@keyframes bankReviewSpin{
    to{
        transform: rotate(360deg);
    }
}

.bank-review-card-action{
    min-width: 170px;
    min-height: 34px;
    margin-top: 4px;
    border: 1px solid var(--primarycolor);
    background: #fff;
    color: var(--primarycolor);
}

.bank-review-secondary-action{
    border: 1px solid var(--primarycolor);
    background: #fff;
    color: var(--primarycolor);
}

.bank-review-action-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.bank-review-split{
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
}

.bank-review-post-summary{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 16px;
    padding: 14px 20px;
}

.bank-review-post-summary-single{
    grid-template-columns: minmax(0, 1fr);
}

.bank-review-ready-post{
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.bank-review-ready-post h2,
.bank-review-results-panel h3{
    margin: 0 0 6px;
    color: #070b25;
    font-size: 21px;
}

.bank-review-ready-post-count{
    margin: 0 0 4px;
    color: #070b25;
    font-size: 18px;
}

.bank-review-ready-post-count strong,
.bank-review-ready-post-amount{
    color: #2f05c8;
    font-size: 28px;
}

.bank-review-ready-post > div > p:last-of-type{
    margin: 0 0 12px;
    color: #55658a;
}

.bank-review-results-panel{
    padding-left: 28px;
}

.bank-review-results-bordered{
    border-left: 1px solid #e1e6ef;
}

.bank-review-result-row{
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
    color: #394568;
}

.bank-review-result-row span{
    display: inline-flex;
    font-size: 20px;
}

.bank-review-result-success span{
    color: #16a34a;
}

.bank-review-result-warning span{
    color: #f97316;
}

.bank-review-result-danger span{
    color: #dc2626;
}

.bank-review-tip{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    background: #f7f3ff;
}

.bank-review-tip .bank-review-stat-icon{
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.bank-review-tip p{
    margin: 0;
    color: #55658a;
}

.bank-review-list-only{
    grid-template-columns: minmax(0, 1fr);
}

.bank-review-has-detail{
    align-items: start;
    min-height: min(74vh, 760px);
}

.bank-review-has-detail .bank-review-main-panel{
    filter: saturate(0.92);
}

.bank-review-has-detail::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(17,24,39,0.08));
    pointer-events: none;
}

.bank-review-nav{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px;
    border: 1px solid #e1e6ef;
    border-radius: 8px;
    background: #f8fafc;
}

.bank-review-nav-item{
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #55658a;
    cursor: pointer;
    font-size: 14px;
}

.bank-review-nav-active{
    background: #fff;
    color: var(--primarycolor);
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.08);
}

.bank-review-main-panel h2{
    margin: 12px 0 6px;
    color: #070b25;
    font-size: 34px;
}

.bank-review-breadcrumb{
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primarycolor);
    cursor: pointer;
}

.bank-review-subtitle{
    margin: 0 0 28px;
    font-size: 16px;
}

.bank-review-notice{
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.45;
}

.bank-review-notice-info{
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.bank-review-total-card{
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 95px;
    padding: 20px 24px;
    margin-bottom: 22px;
    box-sizing: border-box;
}

.bank-review-total-card strong{
    color: #2f05c8;
    font-size: 34px;
}

.bank-review-total-card .bank-review-approve-all{
    margin-left: auto;
    padding: 0 24px;
}

.bank-review-dot{
    color: #55658a;
}

.bank-review-table-card{
    overflow-x: auto;
}

.bank-review-table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.bank-review-table th,
.bank-review-table td{
    padding: 13px 12px;
    border-bottom: 1px solid #e6ebf2;
    text-align: left;
    vertical-align: middle;
    overflow-wrap: anywhere;
}

.bank-review-table th{
    color: #55658a;
    font-weight: 500;
    background: #fff;
}

.bank-review-table tr:last-child td{
    border-bottom: 0;
}

.bank-review-row-selected{
    background: #f5f2ff;
}

.bank-review-clickable-row{
    cursor: pointer;
}

.bank-review-clickable-row:hover{
    background: #faf8ff;
}

.bank-review-accent{
    color: #2f05c8;
    font-weight: 600;
}

.bank-review-row-button{
    width: 34px;
    height: 34px;
    border: 2px solid var(--primarycolor);
    border-radius: 50%;
    background: #fff;
    color: var(--primarycolor);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bank-review-row-button:hover{
    background: var(--primarycolor);
    color: #fff;
    transform: translateX(2px);
}

.bank-review-row-button-check:hover{
    transform: scale(1.04);
}

.bank-review-side-panel{
    position: absolute;
    top: 54px;
    right: 0;
    z-index: 5;
    width: min(760px, 64%);
    max-height: calc(100% - 54px);
    overflow-y: auto;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
    animation: bankReviewDrawerIn 0.22s ease-out;
}

@keyframes bankReviewDrawerIn{
    from{
        opacity: 0;
        transform: translateX(28px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

.bank-review-close{
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #55658a;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.bank-review-side-title{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 58px 18px 24px;
}

.bank-review-side-title h3{
    margin: 0 0 8px;
    font-size: 22px;
}

.bank-review-side-title p{
    margin: 0;
}

.bank-review-side-title-with-total{
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-right: 58px;
}

.bank-review-side-title-with-total > strong{
    margin-left: auto;
    color: #2f05c8;
    font-size: 24px;
}

.bank-review-assignment{
    display: grid;
    grid-template-columns: minmax(130px, 0.8fr) auto minmax(170px, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin: 8px 16px 12px;
    padding: 16px;
}

.bank-review-assignment strong{
    color: #2f05c8;
}

.bank-review-assignment-arrow{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #55658a;
    font-size: 24px;
}

.bank-review-assignment label{
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #55658a;
}

.bank-review-assignment label span{
    color: #111827;
}

.bank-review-select{
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #111827;
}

.bank-review-inline-search{
    min-height: 36px;
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    font-size: 13px;
}

.bank-review-inline-search::placeholder{
    color: #9aa4b2;
}

.bank-review-apply{
    padding: 0 22px;
}

.bank-review-transactions{
    overflow-x: auto;
    border-top: 1px solid #e6ebf2;
}

.bank-review-table-toolbar{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 16px 10px;
}

.bank-review-sort-field{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #55658a;
    font-size: 13px;
}

.bank-review-sort-select{
    min-height: 34px;
    padding: 0 32px 0 10px;
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    font-size: 13px;
}

.bank-review-sort-toggle{
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #fff;
    color: #394568;
    cursor: pointer;
    font-size: 13px;
}

.bank-review-sort-toggle:hover{
    border-color: var(--primarycolor);
    color: var(--primarycolor);
}

.bank-review-transactions .bank-review-table{
    min-width: 760px;
}

.bank-review-transactions .bank-review-description-cell{
    width: 26%;
}

.bank-review-transactions .bank-review-amount-cell{
    width: 10%;
    white-space: nowrap;
}

.bank-review-transactions .bank-review-table:not(.bank-review-exception-table):not(.bank-review-matched-table) th:last-child,
.bank-review-transactions .bank-review-table:not(.bank-review-exception-table):not(.bank-review-matched-table) td:last-child{
    width: 30%;
}

.bank-review-transactions .bank-review-exception-table{
    min-width: 700px;
}

.bank-review-transactions .bank-review-exception-table th,
.bank-review-transactions .bank-review-exception-table td{
    padding-left: 8px;
    padding-right: 8px;
}

.bank-review-transactions .bank-review-exception-table .bank-review-description-cell{
    width: 32%;
}

.bank-review-transactions .bank-review-exception-table .bank-review-amount-cell{
    width: 10%;
}

.bank-review-transactions .bank-review-exception-table th:nth-child(2),
.bank-review-transactions .bank-review-exception-table td:nth-child(2){
    width: 62px;
}

.bank-review-transactions .bank-review-exception-table .bank-review-suggested-cell{
    width: 30%;
}

.bank-review-transactions .bank-review-matched-table{
    min-width: 1120px;
}

.bank-review-transactions .bank-review-table th:nth-child(1),
.bank-review-transactions .bank-review-table td:nth-child(1){
    width: 16px;
    padding-left: 4px;
    padding-right: 2px;
}

.bank-review-transactions .bank-review-table th:nth-child(2),
.bank-review-transactions .bank-review-table td:nth-child(2){
    width: 62px;
}

.bank-review-transactions .bank-review-table th:nth-child(4),
.bank-review-transactions .bank-review-table td:nth-child(4){
    width: 76px;
}

.bank-review-transactions .bank-review-table th:nth-child(5),
.bank-review-transactions .bank-review-table td:nth-child(5){
    width: 62px;
}

.bank-review-transactions .bank-review-table th:last-child,
.bank-review-transactions .bank-review-table td:last-child{
    width: 100px;
    text-align: left;
    white-space: normal;
}

.bank-review-transactions .bank-review-table td:last-child .bank-review-pill{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
}

.bank-review-transactions .bank-review-matched-table th:nth-child(1),
.bank-review-transactions .bank-review-matched-table td:nth-child(1){
    width: 74px;
}

.bank-review-transactions .bank-review-matched-table th:nth-child(2),
.bank-review-transactions .bank-review-matched-table td:nth-child(2){
    width: 86px;
}

.bank-review-transactions .bank-review-matched-table th:nth-child(3),
.bank-review-transactions .bank-review-matched-table td:nth-child(3){
    width: 24%;
}

.bank-review-transactions .bank-review-matched-table th:nth-child(4),
.bank-review-transactions .bank-review-matched-table td:nth-child(4),
.bank-review-transactions .bank-review-matched-table th:nth-child(6),
.bank-review-transactions .bank-review-matched-table td:nth-child(6){
    width: 104px;
}

.bank-review-transactions .bank-review-matched-table th:nth-child(5),
.bank-review-transactions .bank-review-matched-table td:nth-child(5){
    width: 18%;
}

.bank-review-transactions .bank-review-matched-table th:nth-child(7),
.bank-review-transactions .bank-review-matched-table td:nth-child(7){
    width: 16%;
}

.bank-review-transactions .bank-review-matched-table th:nth-child(8),
.bank-review-transactions .bank-review-matched-table td:nth-child(8){
    width: 68px;
}

.bank-review-transactions .bank-review-matched-table th:last-child,
.bank-review-transactions .bank-review-matched-table td:last-child{
    width: 120px;
}

.bank-review-transactions input{
    accent-color: var(--primarycolor);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.bank-review-checkbox-cell{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    min-height: 24px;
    cursor: pointer;
}

.bank-review-checkbox-cell input{
    pointer-events: auto;
}

.bank-review-pill{
    display: inline-block;
    max-width: 210px;
    padding: 7px 10px;
    border-radius: 6px;
    background: #f3f0ff;
    color: var(--primarycolor);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bank-review-pill-muted{
    background: #f1f3f6;
    color: #55658a;
}

.bank-review-reason-toggle{
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    cursor: pointer;
}

.bank-review-reason-row td{
    padding: 18px;
    background: #f8f8ff;
    color: #394568;
    line-height: 1.5;
}

.bank-review-side-actions{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
}

.bank-review-action-help{
    flex-basis: 100%;
    margin: -2px 0 2px;
    color: #55658a;
    font-size: 13px;
    line-height: 1.45;
}

.bank-review-approval-status{
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.3;
    text-transform: capitalize;
    color: #047857;
}

.bank-review-approval-status-pending{
    color: #6b7280;
}

.bank-review-approval-status-not_approved{
    color: #b91c1c;
}

.bank-review-approval-status-acknowledged{
    color: #2f05c8;
}

.bank-review-empty{
    padding: 70px 30px;
    text-align: center;
    color: #55658a;
}

.bank-review-multi-match-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px 16px;
}

.bank-review-multi-match-select-all{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #55658a;
    cursor: pointer;
}

.bank-review-multi-match-card{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    background: #fff;
}

.bank-review-multi-match-details{
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.bank-review-multi-match-row{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.bank-review-multi-match-row-line{
    padding-left: 16px;
    color: #55658a;
    font-size: 13px;
}

.bank-review-multi-match-label{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bank-review-multi-match-amount{
    flex-shrink: 0;
    white-space: nowrap;
}

.bank-review-multi-match-meta{
    color: #55658a;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .bank-review-stat-grid,
    .bank-review-post-summary{
        grid-template-columns: 1fr;
    }

    .bank-review-overview-header{
        grid-template-columns: 1fr;
    }

    .bank-review-results-panel{
        padding-left: 0;
    }

    .bank-review-results-bordered{
        border-left: 0;
        border-top: 1px solid #e1e6ef;
        padding-top: 22px;
    }

    .bank-review-side-panel{
        top: 48px;
        width: min(720px, 82%);
    }

    .bank-review-stat-card,
    .bank-review-state-card{
        min-height: 0;
    }

    .bank-review-assignment{
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .bank-review-assignment-arrow{
        display: none;
    }
}

@media (max-width: 900px) {
    .bank-statement-popup{
        width: min(620px, 92vw);
        padding: 24px;
    }
}

@media (max-width: 700px) {
    .bank-statement-popup{
        width: 94vw;
        max-height: 90vh;
        padding: 18px;
        border-radius: 10px;
    }

    .bank-statement-popup .popup-message{
        max-height: calc(90vh - 106px);
        padding-right: 0;
    }

    .bank-statement-popup #popup_message_title,
    .bank-statement-popup .popup-message-title{
        margin: 0 40px 14px 0;
        font-size: 19px;
    }

    .bank-statement-dialog{
        width: 100%;
        gap: 15px;
    }

    .bank-statement-close-icon{
        top: -4px;
        width: 34px;
        height: 34px;
        font-size: 21px;
    }

    .bank-statement-section{
        margin-top: 0;
        padding-top: 15px;
    }

    .bank-statement-section:first-of-type{
        padding-right: 40px;
    }

    .bank-statement-section h3{
        margin-bottom: 9px;
        font-size: 15px;
    }

    .bank-statement-file{
        align-items: flex-start;
        padding: 12px;
    }

    .bank-statement-file-icon{
        display: none;
    }

    .bank-statement-account-row,
    .bank-statement-inline-fields{
        align-items: stretch;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .bank-statement-account-row .bank-statement-input,
    .bank-statement-inline-fields .bank-statement-input{
        width: 100%;
        max-width: none;
    }

    .bank-statement-to{
        display: none;
    }

    .bank-statement-actions{
        justify-content: stretch;
        margin-top: 2px;
    }

    .bank-statement-process{
        width: 100%;
    }

    .popup:has(.bank-review-dialog){
        width: 94vw;
        max-width: 94vw;
        padding: 14px;
        border-radius: 8px;
    }

    .popup:has(.bank-review-dialog) .popup-message{
        max-height: 82vh;
        padding-right: 2px;
    }

    .bank-review-overview{
        gap: 16px;
    }

    .bank-review-stat-card,
    .bank-review-state-card,
    .bank-review-post-summary,
    .bank-review-tip,
    .bank-review-total-card,
    .bank-review-side-title{
        padding: 16px;
    }

    .bank-review-stat-card,
    .bank-review-state-card{
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        text-align: left;
    }

    .bank-review-dialog-title{
        font-size: 30px;
        margin-bottom: 18px;
    }

    .bank-review-stat-card strong{
        font-size: 36px;
    }

    .bank-review-state-card > strong,
    .bank-review-ready-post-count strong,
    .bank-review-ready-post-amount{
        font-size: 30px;
    }

    .bank-review-ready-post{
        grid-template-columns: 1fr;
    }

    .bank-review-card-action{
        align-self: flex-start;
    }

    .bank-review-tip{
        align-items: flex-start;
    }

    .bank-review-main-panel h2{
        font-size: 28px;
    }

    .bank-review-subtitle{
        margin-bottom: 18px;
    }

    .bank-review-total-card{
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .bank-review-total-card .bank-review-approve-all{
        width: auto;
        margin-left: 0;
    }

    .bank-review-has-detail{
        min-height: 78vh;
    }

    .bank-review-has-detail::before{
        background: rgba(17,24,39,0.12);
    }

    .bank-review-side-panel{
        top: 42px;
        right: 0;
        left: 0;
        width: 100%;
        max-height: calc(100% - 42px);
        border-radius: 8px;
    }

    .bank-review-nav{
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .bank-review-nav-item{
        flex: 0 0 auto;
    }

    .bank-review-side-title,
    .bank-review-side-title-with-total{
        align-items: flex-start;
        flex-direction: column;
        padding-right: 52px;
    }

    .bank-review-side-title-with-total > strong{
        margin-left: 0;
    }

    .bank-review-table th,
    .bank-review-table td{
        padding: 12px 10px;
        font-size: 13px;
    }

    .bank-review-table{
        min-width: 620px;
    }

    .bank-review-transactions .bank-review-table{
        min-width: 720px;
    }

    .bank-review-transactions .bank-review-exception-table{
        min-width: 680px;
    }

    .bank-review-side-actions{
        padding: 14px 16px 16px;
    }

    .account_detail_grid{
        grid-template-columns: 1fr;
    }

    .account_detail_grid h3{
        border-right: 0;
        border-bottom: 0;
        padding-bottom: 6px;
    }

    .account_detail_grid > p,
    .account_value_action{
        padding-top: 6px;
    }

    .integration_item{
        align-items: flex-start;
        flex-direction: column;
    }
}

.chattextlayout{
    width: calc(100% - 18px);
    height: 100vh !important;
    overflow-y: scroll !important;
    padding-bottom: 250px;
    margin-right: 18px;
    padding-right: 10px;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--primarycolor) #eef2f7;
}
.chattextlayout::-webkit-scrollbar {
    width: 8px;
}

.chattextlayout::-webkit-scrollbar-button,
#chatresultsprocess::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.chattextlayout::-webkit-scrollbar-corner,
#chatresultsprocess::-webkit-scrollbar-corner {
    background: transparent;
}

.chattextlayout::-webkit-scrollbar-track {
    background: #eef2f7;
    border-radius: 999px;
}

.chattextlayout::-webkit-scrollbar-thumb {
    background: var(--primarycolor);
    border-radius: 999px;
}

.chattextlayout::-webkit-scrollbar-thumb:hover {
    background: #1f4fbf;
}


#chatresultsprocess{
    width: 100%;
    height: 100vh !important;
    overflow-y: scroll !important;
    padding-bottom: 250px;





}
#chatresultsprocess::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#start_button{
    display: none;
}
.chatresultsitem{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}
.chatresultsitem img{
    margin-right: 6px;
    width:35px;
    height:35px;
}
.chatresultsitem p{
    font-size: var(--text_fontsize);
    text-align: justify;
}

.chatresultsitem div{

    width: 100%;
    font-size: var(--text_fontsize);

}

.chatresultsitem-user{
    justify-content: flex-end;
    box-sizing: border-box;
    padding-right: 64px;
}

.chatresultsitem-user img{
    margin-right: 0;
    margin-left: 6px;
}

.chatresultsitem-user .user-chat-message{
    max-width: 70%;
    direction: ltr;
    text-align: left;
    white-space: pre-wrap;
}

@media (max-width: 700px) {
    .chatresultsitem-user{
        padding-right: 0;
    }
}

#chattextboxlayout{
    position: fixed !important;
    bottom: 0;
    width: 100%;
    background-color: white;
    height: 150px;



}

.chattextboxicon{
    width:20px;
    height:20px;
    margin-right: 8px;
    margin-left: 8px;
}

#chatstructurelayout{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;

}
#chattextboxlayout img:hover{
    cursor: pointer;
}
#chattextboxlayout p{
    font-size: var(--text_fontsize);
    margin-left: 16px;
    margin-bottom: 10px;
    color: #494A50
}

#chattext_input{
    width: 60%;
    padding: 10px;
    font-size: var(--text_field_font_size);
}

#signout_button:hover{
    cursor: pointer;
}

.open-btn {
    padding: 15px 30px;
    font-size: 16px;
    background: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.open-btn:hover {
    transform: translateY(-2px);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup {
    background: white;
    border-radius: 16px;
    padding: 30px;
    width: 30%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.popup-message{
    text-align: justify-all;
    font-size: var(--text_fontsize);
    padding-bottom: 20px;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.close-btn:hover {
    background: #e5e7eb;
}

.popup-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}

.popup-title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 10px;
    text-align: center;

}

#console_button{
    display: none;
}

.close-bottom-btn,.close-bottom-review-btn {
    width: 50%;
    padding: 12px;

    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 20px;
}
.close-bottom-btn{
    background:var(--primarycolor);
    color: white;
}

.close-bottom-review-btn{
    background:#999999;
    color: white;
}

.close-bottom-btn:hover {
    background: #5568d3;
}

#process_invoice_layout{
    width: 100%;
}

.overviewtitlelayout{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 75%;

}

.overviewlayout{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;

}
.overviewinvisible{
    visibility: hidden;
}
.overviewitem{
    width: 32%;
}

.overviewtable{
    width: 75%;
    height: auto;
    margin-top: 3%;
    padding-bottom: 10%;
    margin-bottom: 10%;


}

#tablelayout{
    height: 500px;
    overflow-y: scroll;

}

.overviewtable tr td{
    text-align: center;
    width: 24%;
    padding-top: 6px;
    padding-bottom: 6px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 14px;

}
.overviewtable tr th{
    width: 24%;
    text-align: center;
    color: white;
    background: var(--primarycolor);
    padding-top: 6px;
    padding-bottom: 6px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 16px;
}

.overviewitemamount{
    font-size: 25px;
}
.overviewitemtitle{
    font-size: 18px;

}
.overviewitemtitle:hover{
    cursor: pointer;
}
.overviewitemtitleselected{
    background-color: #bfbfbf;
    padding: 12px;
    margin-right: 6px;
}
.overviewitemcompare{
    font-size: 12px;
    color: #999999;

}
.overviewmonth{
    font-size: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
}
.overviewitemcount{
  font-size: 14px;
    color:#666666;

}
.overviewtitletext{

}
.overviewtitlesubtext{
    font-size: 15px;
    color: #999999;
    margin-top: 0;
    padding-top: 0;
}
.greencolor{
    color:var(--success_green_color)
}
 .primarycolor{
     color: var(--primarycolor)
 }
 .redcolor{
     color: #ef4444;
 }

 .spinner{
     width: 65px;
     height: 65px;
 }

 #menu_icon{
     display: none;
 }

 .errortextfield{
     font-size: 13px;
     color: #ef4444;
 }

 .close_icon{
     display: none;
 }

/* HTML: <div class="loader"></div> */
#messageloader {
    width: 40px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
    background:
            var(--_g) 0%   50%,
            var(--_g) 50%  50%,
            var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.overviewloader{
    width: 50px;
    height: 50px;
}

.buttonlayoutapprovemessage{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}


.pricing-section {
    padding: 60px 20px;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    width: 260px;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.2);
}

.pricing-card.popular {
    border: 2px solid var(--primarycolor);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primarycolor);
    color: white;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}

.price span {
    font-size: 0.9rem;
    font-weight: normal;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features li {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.btn-primary {
    background: var(--primarycolor);
    color: white;
}

.btn-primary:hover {
    background: var(--primarycolor);
}

.btn-outline {
    border: 2px solid var(--primarycolor);
    color: var(--primarycolor);
}

.btn-outline:hover {
    background: var(--primarycolor);
    color: white;
}





.subscriptionlayouttop{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 85%;
}

.subscriptionlayouttop img{
    width: 55px;
    height: 55px;
}

.subscriptionlayouttable{

    width: 90%;
}

.subscriptiontableitems{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.subscriptiontableitems div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 20%;
}

.pagefooterposition{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 100px;
    padding-bottom: 30px;
    display: none;
}
.page_footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 25px;

}

.page_footer a{
    text-decoration: none;
    color: var(--textcolor);
    font-size: 15px;
    margin-left: 6px;
    margin-right: 6px;


}
.page_footer a:hover{
    text-decoration: underline;
    color: var(--primarycolor);
}
.acknowledge{
    text-align: center;
    font-size: 14px;
}
.acknowledge a{
    color: var(--primarycolor);
}

.top_back_button{
    position: absolute;
    top: 20px;
    left: 15px;
}
.top_back_button:hover{
    cursor: pointer;
}

.top_back_button img{
    width: 22px;
    height: 22px;
}

.country_code_desc{
    color: var(--primarycolor);

}

.connect_quickbooks_button_image{
    margin-top: 15px;
    margin-bottom: 15px;
    display: none;
}

.connect_quickbooks_button_image:hover{
    cursor: pointer;
}
.connect_quickbooks_button,.disconnect_quickbooks_button,.disconnect_gmail_button{

    padding: 9px 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    outline: none;
    font-size: 14px;

}
.connect_quickbooks_button,.disconnect_quickbooks_button{
    display: none;
}
.connect_quickbooks_button{
    background: var(--quickbooks_green);
    color:white;
    border: 1px solid var(--quickbooks_green);
}

.connect_quickbooks_button:hover{
    background: var(--quickbooks_green_hover);
    border: 1px solid var(--quickbooks_green_hover);
    cursor: pointer;
}
.disconnect_quickbooks_button, .disconnect_gmail_button{
    background: #FFFFFF;
    color: #393A3D;
    border: 1px solid black;
}
.disconnect_quickbooks_button:hover, .disconnect_gmail_button:hover{
    background: white;
    color: #393A3D;
    border: 1px solid #6B6C72;
    cursor: pointer;
}

.tabiri_sidebar_logo{
    margin-top: 12px;
}

#derived_status{
    font-size: 17px;
}



@media only screen and (max-width:600px){
    :root{
        --login_page_width:85%;
        --message-button-fontsize: 12px;
        --checkboxwidth_cceptterms: 55px;
    }


    .pricing-section {
        padding: 60px 20px;
        text-align: center;
    }
    #pricing_section_layout{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        overflow-y: scroll;


    }

    #pricing_section_layout{
        display: none;
    }


    #sidebar, #sidebarsettings{
        position: fixed;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-left: 2%;
        background:white;
        z-index: 999999;
    }
/**
    #sidebar{
        position: fixed;
        top: 0;
        left: 0;
        width: 20%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-left: 2%;
    }

 */

    #main_content{
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        padding-left: 0;


        /**
          position: fixed;
    top: 0;
    left: 22%;
    width: 75%;
    padding-left: 2%;
         */


    }

    .upload_item{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        width: 100%;
    }


    #chattext_input{
        width: 90%;
        padding-top: 15px;
        padding-bottom: 15px;

    }

    .overviewtitlelayout{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 90%;

    }

    .overviewtitlesubtext{

        margin-top: 10px;
        padding-top: 5px;
    }

    .overviewlayout{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        width: 96%;

    }
    .overviewitem{
        width: 33%;
    }
    .overviewitemtitle{
        font-size: 15px;

    }

    .overviewitemamount{
        font-size: 18px;
    }

    .overviewtable{
        width: 95%;
        margin-top: 3%;
    }

    .popup {

        width: 65%;

    }

    #menu_icon{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
        width: 30px;
        height: 30px;
        align-self: flex-start;
        padding-left: 7px;
        padding-top: 7px;
    }

    #menu_icon:hover{
        cursor: pointer;
    }

    .close_icon{
        width: 20px;
        height: 20px;
        position: absolute;
        top: 10px;
        right: 6px;
        display: block;
    }

    .close_icon:hover{
        cursor: pointer;
    }

    #chatresultsprocess{
        width: 90%;
    }

    #tasks{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        width: 85%;
        margin-top: 25px;
        margin-bottom: 25px;


    }

    .upload_buttons_layout{
        width: 100%;
        max-width: 760px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 10px;
    }

    .upload_buttons_layout .action_button_white{
        width: 100%;
        margin-right: 0;
        box-sizing: border-box;
        justify-content: center;
    }

    .upload_buttons_layout .action_button_white img{
        margin-left: 10px;
        margin-right: 0;
        flex: 0 0 auto;
    }

    .step_1_text{
        width: 90%;
    }

    #chattextboxlayout{
        width: 90%;
    }
    #chatstructurelayout{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .messagebutton, .messagebuttondeny{
        width: 34%;
    }
}

@media only screen and (max-width:420px){
    .upload_buttons_layout{
        grid-template-columns: 1fr;
    }
}
