@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%;
    --container-width: 95%;
    --button-fontsize:16px;

}
/* 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;
    overflow-y: scroll;
}

.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) ;
}

.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%;

}

.drop_down_width{
    box-sizing: border-box;
    width: 100%;
}
.default-button{
    background-color: var(--primarycolor);
    color: var(--white);
    padding: 12px 12px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: var(--button-fontsize);
    border: 1px solid var(--primarycolor);
    width: 70%;
}
.default-button:hover{
    cursor: pointer;

}
.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{
    display: none;
}

#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: fixed;
    top: 0;
    left: 22%;
    width: 75%;
    padding-left: 2%;

}
#sidebarlist{
    list-style: none;

   width: 90%;

}
#sidebarlist li{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: 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;

}
#sidebarlist li p{
    font-size: var(--text_fontsize);
}

.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);
}
.action_button_black{
    background-color: var(--action_button_black);
    color: var(--white);

}
.action_button_white{

    background-color: var(--action_button_white);
    color: var(--primarycolor);
}

.action_button img, .action_button_black img, .action_button_white img{
    margin-right: 4px;
}

.upload_buttons_layout{
    padding-top: 25px;
}

.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-left: 12px;
    padding-right: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    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-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.taskbutton:hover{
    cursor: pointer;
}
.taskbutton img{
    margin-right: 4px;
}
.taskbutton p{
    font-size: var(--text_fontsize);
}

#step_1_layout{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.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;
}

#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{
    display: none;
}



#chatresultsprocess{
    width: 100%;
    height: 100vh !important;
    overflow-y: scroll !important;
    padding-bottom: 250px;





}
#chatresultsprocess::-webkit-scrollbar {
    display: none;
}
.chattextlayout{
    width: 100%;
    height: 100vh !important;
    overflow-y: scroll !important;
    padding-bottom: 250px;


}
.chattextlayout::-webkit-scrollbar {
    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);

}

#chattextboxlayout{
  position: fixed !important;
    bottom: 0;
    width: 100%;
    background-color: white;
    height: 150px


}
#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-top: 10px;
    padding-bottom: 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;

}

.close-bottom-btn {
    width: 50%;
    padding: 12px;
    background:var(--primarycolor);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 20px;
}

.close-bottom-btn:hover {
    background: #5568d3;
}

#process_invoice_layout{
    width: 100%;
}