
*,html, body,h1,h2,h3,h4,h5,h6,span,th,td,section{

    font-family: 'Poppins', sans-serif;

}

html, body{
    height: 100%; /* Ensure the body takes up the full height of the page */
    margin: 0;    /* Remove default margin */
    padding: 0;   /* Remove default padding */
    overflow: hidden; /* Initially hide the scrollbar */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
}

/* Webkit browsers (Chrome, Safari) initially hide the scrollbar */
body::-webkit-scrollbar {
    width: 0;
  }
  
  /* Visible scrollbar when body is being scrolled */
  body.scrolling {
    overflow: auto;
    scrollbar-width: thin; /* Firefox scrollbar becomes visible */
  }
  
  /* Show scrollbar in WebKit browsers while scrolling */
  body.scrolling::-webkit-scrollbar {
    width: 10px;
  }
  
  body.scrolling::-webkit-scrollbar-thumb {
    background-color: #00B5E2;
    border-radius: 10px;
  }
  
  body.scrolling::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 10px;
  }
    
body {
    /* background: #fdfdfd;           Set background color */
    box-sizing: border-box;        /* Ensure padding is included in the height/width calculation */
    height: 100vw; /* Full height of the viewport */
    overflow-y: auto; /* Allows scrolling */
    scrollbar-width: none; /* Hide scrollbar in Firefox when not scrolling */
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    position: relative;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 0;

}

/* Webkit-based browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    z-index: 9;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #157cb9; /* Color of the scrollbar handle */
    border-radius: 10px; /* Rounded scrollbar handle */
    border: 2px solid #f5f5f5; /* Add some padding for better visuals */
  }
  
  ::-webkit-scrollbar-track {
    background-color: #f5f5f5; /* Background of the scrollbar track */
    border-radius: 10px; /* Optional: rounded scrollbar track */
  }

.row{
    margin: 0;
    padding: 0;
}



ul,li{
    list-style-type: none;
}

.site-logo{
    width: 72px;
    height: 18px;
    margin:4vh;
}

.sidebar-vertical a{
    text-decoration: none;
    color: #fff;
}

.sidebar-vertical li a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebar-vertical li a span{
    padding-top: 10px;
}

.highlighted-color-o{
    color: #FF6767;
}

.top-header {
    padding: 5px 15px 5px 105px;
    background: #fff;
    border-bottom: 1px solid #fff;
    width: 100%;
    box-shadow:3px 9px 5px -6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 2;
}
.top-header .breadcrumbs{
    padding-left: 0;
    transform: translate(10px,10px);
}
 .top-header .breadcrumbs .past-text{
    color: #11111166;
}
 .top-header .breadcrumbs .past-link{
    color: #11111166;
    padding: 0 8px;
}

.top-header .col-8.right-top-header.text-right li:last-child {
    padding: 0 0 0 10px;
}
.top-header .col-8.right-top-header ul li {
    padding: 0 5px;
}

 .col-8.right-top-header{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}


 .col-8.right-top-header ul{
    transform: translate(10px, 10px);
}
/* Style the search box container */
 .col-8.right-top-header .search-box {
    position: relative;         /* Allows positioning of the icon inside the input */
    width: 250px;               /* Width of the search box */
    background-color: #f0f0f0;  /* Background color of the search box */
    border-radius: 12px;         /* Rounded corners */
    display: flex;
    align-items: center;        /* Vertically center the input and icon */
}

/* Style the search input */
 .col-8.right-top-header .search-input {
    width: 100%;                /* Full width input */
    padding: 0px 40px 0px 45px; /* Padding to make room for the search icon */
    border: none;               /* Remove the default border */
    border-radius: 12px;         /* Rounded corners */
    outline: none;              /* Remove the focus outline */
    background-color: #f0f0f0;  /* Match input background to container */
    font-size: 16px;            /* Font size for text */
    color: #11111166;  
}

/* Style the search icon */
 .col-8.right-top-header .search-icon {
    position: absolute;         /* Position it inside the input box */
    left: 15px;                /* Distance from the right side */
    color: #555;                /* Color of the icon */
    font-size: 18px;            /* Size of the icon */
    pointer-events: none;       /* Icon should not block input field clicks */
    width: 16px;
}


/* custom code gpt */
/* Main Sidebar Style */
.sidebar-vertical {
    position: fixed;      /* Sticks to the screen */
    top: 0;               /* Starts from the top */
    left: 0;              /* Fixed to the left */
    width: 85px;         /* Width of the sidebar */
    height: 100vh;        /* Full screen height */
    border-top-right-radius: 25px; /* Curve for top-right corner */
    border-bottom-right-radius: 25px; /* Curve for bottom-right corner */
    display: flex;
    flex-direction: column;
    align-items: center;   /* Center the content */
    padding: 20px 0;
    z-index: 2;         /* Ensure the sidebar is above other content */
}

/* Logo */
.sidebar-vertical .site-logo {
    width: 60px;
    height: auto;
    margin-bottom: 20px;  /* Adds space below the logo */
}


/* Container for the UL to allow vertical centering */
.sidebar-vertical .menu-container {
    display: flex;
    flex-grow: 1;          /* Takes up remaining space to allow vertical centering */
    flex-direction: column;
    justify-content: center; /* Vertically centers the UL */
    align-items: center;   /* Center the content */
    width: 100%;
}

.sidebar-vertical .menu-container .custom-sidebar-icons {
    width: 16px;
    height: 16px;
}

/* Sidebar Icons */
.sidebar-vertical ul {
    justify-content: center; /* Center content vertically */
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;          /* Ensure the icons align */
    text-align: center;    /* Center the icons */
}

.sidebar-vertical ul li {
    padding:  15px 0;        /* Spacing between icons */
}

.sidebar-vertical .menu-container a.active {
    color: #FDFDFD;
}

.sidebar-vertical .menu-container ul li a span.sf-text-blue {
    color: #8C8C8B;
}


.sidebar-vertical ul li a {
    font-size: 12px;
    display: flex;
    justify-content: center; /* Ensure the icon inside the <a> is centered */
    width: 100%;
}

.img-6x6{
    width: 6px;
    height: 6px;
}

.img-14x14{
    width: 14px;
    height: 14px;
}
.img-16x16{
    width: 16px;
    height: 16px;
}
.img-16x24{
    width: 16px;
    height: 24px;
}

.img-20x20{
    width: 20px;
    height: 20px;
}


.img-22x22{
    width: 22px;
    height: 22px;
}

.img-24x24{
    width: 24px;
    height: 24px;
}

.img-32x32{
    width: 32px;
    height: 32px;
}

.img-34x34{
    width: 34px;
    height: 34px;
}

.height-84x84{
    min-height: 84px;
    min-height: 84px;
}


.height-95x95{
    min-height: 95px;
    min-height: 95px;
}

.height-108x108{
    min-height: 108px;
    min-height: 108px;
}


.height-168x168{
    min-height: 168px;
    min-height: 168px;
}

.height-175x175{
    min-height: 175px;
    min-height: 175px;
}
.height-190x190{
    min-height: 190px;
    min-height: 190px;
}


.height-221x221{
    min-height: 221px;
    min-height: 221px;
}

.sf-chips{
    border-radius: 5px;
    padding: 0 10px;
    text-align: center;
}
.sf-chip-blue{background: #EAF4F9;padding: 5px 10px;}
.sf-chip-blue:hover{border:1px solid #EAF4F9}
.sf-chip-olive{background: #58BD354D;}
.sf-chip-red{background: #FDE3E3;}

.sf-chips.sf-chip-blue{
    text-align: left;
}

.sf-chips.sf-chip-blue:hover{
    border:none;
}

.sf-bg-l-grey{
    background: #F1F1F1;
}


.sf-bg-white{
    background: #fff;
    border-radius: 15px;
}


.sf-bg-white-5{
    background: #fff;
    border-radius: 5px;
}

.sf-text-filled-blue{
    color: #fff;
    background-color: #157CB9;
    border-radius: 5px;
    padding: 2px 5px;
}


/* Container for the table body */
.row.data-section {
    max-height: 32vw; /* Adjust as needed for visible height */
}

.row.data-section .table-body {
    max-height: 32vw; /* Adjust as needed for visible height */
    min-height: 32vw;
    padding-left: 0;
}
.table-body.mh-28{
    max-height: 28vw;
}

/* Each section inside the table body */
/* .table-body-parent {
    scroll-snap-align: start; Align the start of each section to the viewport
    padding: 10px 0;
    border-bottom: 1px solid #ccc; Optional: for visibility of sections
} */

.table-body-parent div:not(.div2) span{
    white-space: nowrap;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    text-align: left;
}


.table-body-parent div.div2 span{
    white-space: normal ;
}


.table-body-parent div.div5:hover span{overflow: visible;}
.table-body-parent div.sf-text-black.text-f-10, .table-body-parent div.sf-text-black.text-f-8 {
    font-size: 10px;
}

/* Optionally style the inner divs, make sure they don't affect scrolling */
.table-body-section > div {
    padding: 0 10px;
}

.table-body-section span,.sf-line-h-20{
    line-height: 20px;
}

.too-small{
	font-size: 0.5em;
}

.translate-10-10{transform: translate(10px, 10px);}
.translate-0-1{
    transform: translate(0px, -1px);
}

.translate-0-5{    transform: translate(0px, 5px);}
.translate-0-10{    transform: translate(0px, 10px);}
.translate-0-n3{    transform: translate(0px, -3px);}
.translate-3-8{    transform: translate(3px, 8px);}
.translate-0-80{
    transform: translate(65px, -80px);
}
.translate-25-80{
    transform: translate(25px, -80px);
}
.translate-30-60{
    transform: translate(30px, -60px);
}
.translate-80-90{
    transform: translate(80px, -75px);
}
.translate-120-165{
    transform: translate(120px, -165px);
}

.translate-n10-10{
    transform: translate(-10px, 10px);
}


.translate-0-10{
    transform: translate(0px, 10px);
}

.translate-0-20{
    transform: translate(0px, 20px);
}

.translate-0-30{
    transform: translate(0px, 30px);
}

.translate-0-45{
    transform: translate(0px, 45px);
}

.translate-0-70{
    transform: translate(0px, 70px);
}

.sf-text-down-translate-68{
    transform: translate(0px, -68px);
}

.blue-round{
    background: #157cb9;
    border-radius: 50px;
    padding: 6px 8px;
    display: block;
    max-height: 36px;
    max-width:fit-content;
}

.grey-round{
    background: #F5F5F5;
    border-radius: 50px;
    padding: 6px 8px;
    display: block;
    max-height: 36px;
    max-width:fit-content;
}

.section-2-dash-scrollable .blue-round{
    padding: 12px;
    max-height: 50px;
}

.section-2-dash-scrollable .grey-round{
    padding: 12px;
    max-height: 50px;
}

.dash-scrollable-child{
    max-height: 298px;
    overflow: hidden scroll;
    scroll-behavior: smooth;

}

.dashboard-container-white.section-2-dash.sf-padding-20 .row:nth-child(3) {
    max-height: 147px;
}

.dashboard-content .col-12.row.section-1-filter{ max-height: 1.7rem;}
body.container-fluid.master-report .dashboard-content .col-12.row.section-1-filter {
    max-height: 3.7rem;
    padding:0 ;
}

body.container-fluid.master-report .dashboard-content .col-12.row.section-1-filter .col-12.sf-flex-right .sf-padding-10TB {
    padding: 0;
}

body.container-fluid.master-report .row.report-page-button.text-center.pb-3.justify-content-between:first-child div {
    padding-left: 0;
    margin-left: 0 !important;
}

.sf-vertical-center{
    display: flex;
    align-items: center;  /* Vertically center the radio button and label */
    position: relative;
}

/* suhas html update col-1 greeting-header-second - in UI make this class from col-1 to col-3*/
.greeting-header-second{
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    max-height: 30px;
}

.greeting-header-second select#jobYear {
    padding: 5px 15px;
}

/* vertical line stepper */
/* .col-2.sf-vertical-center.active::before {
    background: #157CB9;
    background-image: none;
} */

/* .col-2.sf-vertical-center.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: translate(20px, 20px);
    width: 1.5px;
    height: 63%;
    z-index: 1;
} */

.vertical-step::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: translate(23px, 24px);
    width: 1.5px;
    height: 50%;
    border-left: 2px dashed #8C8C8C; /* Dashed grey line */

    z-index: 1;
}


/* Solid blue line for active states */
.vertical-step.active::before {
border-left: 2px solid #157CB9; /* Solid blue color for active state */
}

.vertical-step.last-child::before{
    border:none;
}
/* Ensure the line does not extend beyond the first and last col-2 elements */
.vertical-step:first-child::before {
    top: 50%;
  }
  
.vertical-step:last-child::before {
    bottom: 50%;
}

.custom-sidebar-icons {
    width: 24px;
    height: 24px;
}

#main-wrapper .custom-sidebar-icons {
    width: 20px;
    height: 20px;
}

#main-wrapper  .img-16x24 {
    width: 12px;
    height: 20px;
}
#main-wrapper  img#profileBtn{
    width: 22px;
    height: 22px;
}

.custom-sidebar-icons.img-30 {
    width: 24px;
    height: 24px;
}

.right-top-header ul {
    display: flex;
}


.right-top-header ul li a {
    display: flex;
    justify-content: center; /* Ensure the icon inside the <a> is centered */
    width: 100%;
}

.right-top-header .tooltip-link {
    color: #11111166;               /* Link color */
    text-decoration: none;         /* Remove underline */
    position: relative;
}

/* Background greying effect on hover */
.right-top-header .tooltip-link:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Grey background on hover */
    padding: 5px;                        /* Add padding to make the background visible */
    border-radius: 5px;                  /* Rounded corners */
    text-decoration: none;               /* No underline */
    color: #11111166;                      /* Keep link color */
}

/* Container for the notification icon */
.notification-item {
    position: relative;  /* Allows positioning the red dot */
}

/* Notification dot */
.notification-dot {
    position: absolute;
    width: 10px;                 /* Size of the notification dot */
    height: 10px;
    background-color: red;       /* Red color for the dot */
    border-radius: 50%;          /* Make it a circle */
    border: 2px solid white;     /* Optional: add a white border to separate it from the icon */
    display: inline-block;
    transform: translate(6px, 0px);
}


/****************************************************
dashboard-content
****************************************************/

body.jobs .dashboard-content{
    background: #fdfdfd;
    padding: 55px 0px 10px 95px;
}

body:not(.jobs) .dashboard-content{
    padding: 70px 0px 10px 95px;
}


.dashboard-content .table-head.mb-2 { margin: 0 !important;}

.dashboard-content .sf-content-padding,.dashboard-content .sf-padding-10TB{
    padding: 0px 15px 0px 0px;
}

.dashboard-content .sf-bg-white.sf-padding-10TB {
    padding-right: 0;
}

.dashboard-grey-content{
    background: #F5F5F5;
    padding: 10px 0px 20px 85px;
}


.zeus-h3{
    font-size: 28px;
    line-height: 29px;
    font-weight: bold;
}

.zeus-welcome{
    font-size: 14px;
}

/* Custom wave emoji animation */
.wave {
    animation: wave-animation 2.5s infinite;
    display: inline-block;
    transform-origin: 70% 70%;
}

.section-1-cards{
    /* padding: 20px 10px; */
    padding: 0px;
}

.section-2-cards .section-2-dash {
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
}


.section-2-cards .section-2-dash .sf-padding-40T0RL20B{
    padding: 10px 0;
}


.section-2-cards  .section-2-dash-scrollable .col-2.text-end{
    padding-right: 0;
}

.section-2-cards  .transform-updatation {
    transform: translate(0px, -81px);
}

.dashboard-grey-content .section-2-cards .height-168x168{
    min-height: 120px;
    max-height: 120px;
}
.dashboard-grey-content .section-2-cards .height-168x168 .translate-0-45 {
    transform: translate(0px, 20px);
}

.dashboard-grey-content .section-2-cards .height-168x168 .translate-0-20 {
    transform: translate(0px, 10px);
}

.dashboard-grey-content .section-2-cards .height-168x168 .translate-0-10 {
    transform: translate(0px, 10px);
}

.dashboard-grey-content .section-2-cards .height-175x175{
    min-height: 100px;
    max-height: 100px;
}

.dashboard-grey-content .section-2-cards .height-175x175 .translate-0-30 {
    transform: translate(0px, 10px);
}

.dashboard-grey-content .section-2-cards .height-175x175 .translate-120-165 {
    transform: translate(130px, -103px);
}

.dashboard-grey-content .section-2-cards .height-95x95 {
    min-height: 65px;
    max-height: 65px;
}

.dashboard-grey-content .section-2-cards .height-95x95 .translate-n10-10 {
    transform: translate(-10px, 0px);
}



.dashboard-grey-content .section-2-cards .height-190x190 {
    min-height: 145px;
    max-height: 145px;
    transform: translate(0px, 25px);
}

.dashboard-grey-content .section-2-cards .col-9.transform-updatation:last-child .transform-updatation.row {
    transform: translate(0px, -35px);
}

.dashboard-grey-content .section-2-cards .height-108x108{
    min-height: 108px;
    max-height: 108px;
    transform: translate(0px, 10px);
}

.dashboard-grey-content .section-2-cards .col-9.transform-updatation:last-child .transform-updatation.row .col-12.sf-padding-20T:last-child {
    padding-top: 12px;
}



.dashboard-grey-content .section-2-cards .height-84x84{
    min-height: 65px;
    max-height: 65px;
    padding: 10px !important;
}

.dashboard-grey-content .section-2-cards .height-84x84 .translate-0-5 {
    transform: translate(0px, 0px);
}

.dashboard-grey-content .section-2-cards .height-84x84 .translate-3-8 {
    transform: translate(3px, 2px);
}

.dashboard-grey-content .section-2-cards .height-84x84 .translate-80-90 {
    transform: translate(85px, -70px);
}

.dashboard-grey-content .section-2-cards .transform-updatation{
    transform: translate(0px, -50px);
}

.dashboard-grey-content .section-2-cards .col-4.sf-padding-20T{padding-top: 10px;}
.dashboard-grey-content .section-2-cards  .row.section-2-dash-scrollable.sf-padding-40T0RL20B {
    padding: 0 0 20px;
}

.dashboard-grey-content .section-2-cards .height-221x221{
    min-height: 178px;
    max-height: 178px;
}
.dashboard-grey-content .section-2-cards .height-221x221 .translate-0-70 {
    transform: translate(0px, 40px);
}

.dashboard-grey-content .section-2-cards .height-221x221 .translate-0-30 {
    transform: translate(0px, 20px);
}

.dashboard-container-white{
    background-color: #fff;
    border-radius: 15px;
    border-color: #BEDFFB;
    border: 1px solid #BEDFFB;
}
.section-1-cards .job-importer .job-importer-sec-1,.dashboard-container-head-grey{
    background: #F5F8FB;
    padding: 5px 20px;
    border-bottom: 1px solid #BEDFFB;
    border-radius: 15px 15px 0 0;
}

.dashboard-container-greyed{
    background: #F5F8FB;
    padding: 10px 20px;
    border:1px solid #E4EDF4;
    border-radius: 15px; 
}

.section-2-dash-scrollable .col-10.row{
    background: #F5F8FB;
    padding: 10px 20px 10px 10px;
    border:none;
    border-radius: 15px; 
}

.jobs-1{
    position: absolute;
    border: 3px solid #E4EDF4;
    background: #fff;
    border-radius: 50%;
    transform: translate(10px, 25px);
    max-width: 6%;
    text-align: -webkit-center;
    padding: 12px 0;
    line-height: 18px;
}

.jobs-2{
    position: absolute;
    border: 3px solid #E4EDF4;
    background: #F0F7FE;
    border-radius: 50%;
    max-width: 7%;
    text-align: -webkit-center;
    padding: 20px 0px;
    line-height: 18px;
    transform: translate(91px, -22px);
}

.jobs-3 {
    position: absolute;
    border: 2px solid #BEDFFB;
    background: #E9F4FE;
    border-radius: 50%;
    max-width: 10%;
    text-align: -webkit-center;
    padding: 40px 10px;
    line-height: 18px;
    transform: translate(180px, -22px);
}

.jobs-4{

    border: 3px solid #E4EDF4;
    background: #fff;
    border-radius: 50%;
    max-width: 25%;
    text-align: -webkit-center;
    padding: 20px 0px;
    line-height: 18px;
    position: relative;
    transform: translate(328px, 20px);
}

.round-clip-icon{
    position: relative;
}

.round-clip-icon::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 40px;
    background-color: #e6f1fd;
    border-radius: 0px 0px 0px 40px;
    border: 1px solid #BEDFFB;
    box-shadow: -1px 1px 0 #e6f1fd;
}


.job-importer-sec-1 .sf-border-button-icon{
    border:none;
    background-color: transparent;
    padding: 0;
}

.fa-solid.fa-chevron-down{
    padding-left: 8px;
}

.eta-section .dashboard-container-white{
    padding: 0;
}


.col-4.eta-child::before {
    position: absolute;
    content: '';
    /* border-left: 4px solid red; */
    content: "";
    position: absolute;
    transform: translate(110px, 16px);
    width: 1px;
    height: 3%;
    border-left: 2px solid #BEDFFB;
    z-index: 1;
}

.col-4.eta-child.last-child::before{
    border:none;
}

.line-height-12{
    line-height: 12px;
}

.text-f-40{font-size: 40px;}
.text-f-28{font-size: 28px;}
.text-f-24{font-size: 24px;}
.text-f-20{font-size: 20px;}
.text-f-18{font-size: 18px;}
.text-f-16{font-size: 16px;}
.text-f-14{font-size: 14px;}
.text-f-12{font-size: 12px;}
.text-f-10{font-size: 10px;}
.text-f-8{font-size: 8px;}

/* ***************************************************
Listing page content  
*****************************************************/

/* section 1 filter */
.section-1-filter{
    padding: 0 15px;
}

/* Flex container for centering */
.radio-container {
    display: flex;
    align-items: center;  /* Vertically center the radio button and label */
    gap: 10px;            /* Space between radio button and label */
}

/* Style the radio button */
input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    appearance: none;
    border-radius: 50%;
    border: 1px solid #157CB9;
    outline: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    top: 5px;
    /* background-color: #fff; */
    transition: all 0.2s ease;
}

/* When the radio is checked, apply custom styling */
input[type="radio"]:checked {
    background-color: #fff;   /* Background color when selected */
    border-color: #157CB9;       /* Change border color when selected */
}

/* The inner dot when radio is selected */
input[type="radio"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;                /* Inner dot size */
    height: 10px;
    background-color: #157CB9;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

/* Scale the inner dot when radio is checked */
input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Label styling */
label {
    font-size: 14px;  /* Adjust font size if needed */
    cursor: pointer;  /* Make label clickable */
}

.column-section,.table-head-section{
    background-color:#E9F4FE;
    border:1px solid #E4EDF4;
    border-radius: 15px 15px 0 0;
}


.column-section,.table-data-section{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.table-data-section,.table-body-parent{
    border-radius: 15px;
    background-color: #f5fafe;
    border:1px solid #E4EDF4;
    margin:5px 0 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for background, shadow, and transform */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Initial shadow */
}

/* .table-body-parent:hover{
    background-color: #FDFDFD; Background color on hover
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); Shadow on hover
    transform: translateY(-5px); Floating effect
} */

.table-head-section,.table-body-section{
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* align-items: center; */
    align-items: flex-start;
}

.table-head-section:has(div.div1), .table-body-section:has(div.div1) {
    justify-content: space-between;
}

.border-1-dashed-grey{
    border-left:1px dashed #8C8C8C;
}

.border-1-dashed-l-grey{
    border-right:1px dashed #E6E6E6;
}

.border-b-1-dashed-greyed{
    border-bottom:1px solid #F5F5F5;
}
.border-b-1-dashed-l-blue{border-bottom:1px solid #D5E4EC;}
.border-b-1-solid-l-grey{border-bottom:1px solid #E3E3E3;}
.border-t-1-dashed-grey{border-top:1px dashed #8C8C8C;}

.table-body-section span{
    display: block;
}

.vertical-line {
    position: absolute;
    width: 0.4px;
    height: 35px;
    transform: translate(5rem, -1.6rem);
    background-color: #BEDFFB;
    z-index: 1;
}

.sf-border-blue{
    border-radius: 15px;
    border:1px solid #BEDFFB;
}

.sf-border-l-blue-3{
    border-radius: 15px !important;
    border:1px solid #E4EDF4;
}

.sf-round-button-i{
    padding: 7px;
    border-radius: 25px;
    margin-right:5px;
}

.timeline-body .tab-content .col-12.row.pt-3,.timeline-body .tabcontent .col-12.row.pt-3{  display: flex;  justify-content: center;}
.timeline-body .col-1{padding: 0;}

div#process-boe .col-1 {
    max-width: 7%;
}
/* .timeline-body .timeline-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10rem;
    width: 32rem;
    height: 2px;
    background-color:rgba(21, 124, 185, 0.4);
    z-index: 2;
}

.timeline-body  .timeline-heading {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background: white; 
    z-index: 3;
} */

.timeline-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold; /* Optional: Make text bold */
}

.timeline-heading::before,
.timeline-heading::after {
    content: "";
    flex: 1;
    height: 2px; /* Thickness of the line */
    background-color: #157CB966; /* Line color */
    margin: 0 10px; /* Space between text and line */
        
        width: 13rem;
}



.timeline-body  .timeline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    position: relative;
}


.sf-round-button-i-timeline{
    padding: 8px 12px;
    border-radius: 50px;
    display: inline-block;
}

.sf-round-button-i-timeline-number{padding: 0 8px;border-radius: 50px;}
.sf-round-button-i-timeline-small-status{padding: 3px 8px;border-radius: 50px;position: relative;top: -1.2rem;z-index: 2;color: #5D91AF;}
.sf-round-button-i-timeline-small-status input[type='radio']{background: #fff;}
.t3p5rem{top: -3.5rem;}

.sf-round-button-i-timeline.mb-3::after {
    content: "";
    display: flex;
    width: 4px;
    height: 4px;
    background-color: #61AFF6;
    border-radius: 50%;
    position: relative;
    transform: translate(10px, 1.7rem);
    z-index: 2;
}


.timeline-body h3.text-f-14,.timeline-body h3.text-f-10 {border-top:1px solid #E4EDF4;}

.timeline-item .sf-round-button-i-timeline:last-child{padding: 15px 20px;    transform: translate(0px, 40px);}


i.fa{font-size: 10px;}
.sf-round-button-i-l-grey-number{color:#111111;background: #CBDCE9;}
.sf-round-button-waiting{background: #F2F2F2;}
.sf-round-button-i-l-o{background: #F9ECDC;}
.sf-round-button-i-l-g{background: #EDF6F1;}
.sf-round-button-i-l-b{background: #ECF4FA;}
.sf-round-button-inprogress{background: #DFEEF8;}
.sf-round-button-i:hover{background: #F9ECDC;}

.sf-bg-blue-light-2{
    background:#F7FBFF;
}

.sf-bg-blue-light-1{
    background:#E9F4FE;
}

.sf-bg-blue-light-4{
    background:#E4EDF4;
}

.sf-bg-blue-light-3{
    background:#F5F8FB;
}


.sf-bg-white{
    background: #fff;
}

.sf-bg-white-color{
    background: #fff;
}


.sf-bg-green{background:#00751a;}
.sf-bg-green-l{background:#2a873f;}
.sf-bg-green-l-2{background:#5A9245;}
.sf-round-button-completed{background-color: #9cdf83bf;}

.sf-border-r-0TL-15br{border-radius: 0 0 15px 15px;}

@keyframes wave-animation {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Ensure sidebar is responsive */
@media (max-width: 768px) {
    .sidebar-vertical {
        width: 100px;     /* Slightly reduce width on smaller screens */
    }
}




/********************************************************

    Universal Css

********************************************************/

.sf-text-300{
    font-weight: 300;
}
.sf-text-400{
    font-weight: 400;
}

.sf-text-500{
    font-weight: 500;
}

.sf-text-600{
    font-weight: 500;
}
.sf-text-700{
    font-weight: 500;
}
.sf-text-800{
    font-weight: 500;
}
.sf-text-900{
    font-weight: 500;
}

.min-w--w-fill-a{min-width: -webkit-fill-available;max-width: -webkit-fill-available;}

.sf-text-d-blue{
    color : #096093;
}
.sf-text-blue{
    color : #157CB9;
}
.menu-color{
    color : #75B6DD;
}

.sf-text-red{
    color : #E65858;
}

.sf-text-pink{
    color: #F98C8C;
}

.sf-text-green{
    color: #5A9245;
}

.sf-text-black{
    color:#111111
}

.sf-bg-theme-blue{
    background: #E9F4FE;
    border:1px solid #BEDFFB;
}


.sf-bg-theme-wob-blue{
    background: #E9F4FE;
}

.job-importer-icon{
    position: absolute;
    /* background: #E9F4FE; */
    padding: 5px;
    border-radius: 25px;
    /* border:1px solid #BEDFFB; */
}

.job-importer-icon{
    border:1px solid #BEDFFB;
    box-shadow: 0 0 0 8px #fff; 
}

.job-importer-sec-2.row .translate-25-80 {
    transform: translate(65px, -80px);
}

.job-importer-sec-2.row .translate-0-80 {
    transform: translate(75px, -80px);
}

.sf-border-radius-5{
    border-radius: 5px;
}

.sf-border-radius-12{
    border-radius: 5px;
}

.sf-bg-blue{
    background-color: #157CB9;
    color : #fff;
}

.sf-bg-blue-l-2{
    background-color: #157CB9D9;
    color : #fff;
}

.sf-text-greyed{
    color:#8C8C8C;
}

.sf-button{
    border-radius: 5px;
    padding: 5px 15px;
    border: 0;
}


.sf-border-button-icon-wo-flex{
    background: #fff;
    border-radius: 5px;
    padding: 5px 15px;
    border: 1px solid #BEDFFB ;
    text-align: center;
}

.sf-border-button-icon{
    background: #fff;
    border-radius: 5px;
    padding: 5px 15px;
    border: 1px solid #BEDFFB ;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


.sf-flex-left,.sf-flex-right{
    display: flex;
    padding: 0;
}

/************margin ***************/
.margin-0{margin:0;}
.margin-r-5{margin-right:5px;}
.margin-r-10{margin-right:10px;}
/* Padding content */

.sf-content-padding{
    padding: 10px 15px 10px 0px;
}


.sf-content-padding-r-0{
    padding: 10px 0px;
}

.sf-padding-40T0RL20B{
    padding:40px 0 20px;
}

.sf-padding-10T0RL20B{
    padding:10px 0 20px;
}

.p-r-0{
    padding-right:0 !important;
}

.p-l-0{
    padding-left:0 !important;
}


.p-l-12{
    padding-left:12px;
}
.p-r-12{
    padding-right:12px;
}
.p-r-24{
    padding-right:24px;
}


.background-mask-right{
    background: url(../../assets/images/bg-mask.png);
    background-position: 106px;
    background-repeat: no-repeat;
    background-size: contain;
}

.do-background-mask-right{
    background: url(../../assets/images/bg-mask.png);
    background-position: 110px 100px;
    background-repeat: no-repeat;
    background-size: 50%;
}

.do-background-mask-right-3{
    background: url(../../assets/images/mask-3.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-mask-left{
    background-image: url(../../assets/images/mask-2.png);
    background-position: -30px 25px;
    background-repeat: no-repeat;
    background-size: contain;
}

.sf-padding-40TBLR{padding: 40px;}

.sf-padding-25TBLR{
    padding:25px
}

.sf-padding-20TBLR{
    padding:20px
}

.sf-padding-25TB15LR{
    padding: 25px 15px;   
}

.sf-padding-10T15LR5B{
    padding:10px 15px 5px;
}

.sf-padding-15TB10LR{
    padding:10px
}

.sf-padding-10TB40RL{padding: 10px 40px;}
.sf-padding-10TB60RL{padding: 10px 60px;}

.sf-padding-10{
    padding:10px
}

.sf-padding-20{
    padding:20px
}
.sf-padding-20B{
    padding-bottom:20px;
}
.sf-padding-20T{
    padding-top:20px;
}

.sf-padding-40B{
    padding-bottom:40px;
}


.sf-padding-10TBLR{
    padding: 10px 0;
}

.sf-padding-10TB{
    padding: 10px 0;
}

.sf-padding-10LR{
    padding: 10px 0;
}


.sf-right-padding-2{
    padding-right: 2px;
}

.sf-right-padding-5{
    padding-right: 5px;
}

.sf-left-padding-5{
    padding-left: 5px;
}
.sf-left-padding-10{
    padding-left: 10px;
}
.sf-left-padding-15{
    padding-left: 15px;
}


/* Widths of content */

.w-32{
    width: 32px;
}
.w-122{
    width: 122px;
}
.w-152{
    width: 152px;
}

.w-192{
    width: 192px;
}

.max-w-c{
    max-width: max-content;
}


/* Display properties */
.d-block{
    display: block;
}
.d-grid{
    display: grid;
}
.d-flex{
    display: flex;
}

.d-flex-column{
    display: flex;
    flex-direction: column;
}

.v-hidden{
    visibility: hidden;
}

.position-a{
    position: absolute;
}
.position-a-tbrl-0{
    top: unset;
    bottom:unset;
    left: unset;
    right: unset;
}


.checkbox-menu ,.profile-options,.color-options,.groundStaff-menu {
    display: none; /* Initially hidden */
    position: absolute;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),   /* Bottom and right shadow */
                0 -4px 8px rgba(0, 0, 0, 0.05), /* Top and left shadow */
                0 0 4px rgba(0, 0, 0, 0.05);
    width: 200px;
    /* transform: translate(30px,10px); */
    z-index: 99;
}

.checkbox-menu{
    transform: translate(30px,40px);
}

.dashboard-content .col-12.row.section-1-filter #checkboxMenu.checkbox-menu {
    transform: translate(0px, 10px);
}

.color-options{
    transform: translate(-185px, 35px);
    width:330px ;
}

.groundStaff-menu{ transform: translate(-80px, 0px);}

.profile-options{
    transform: translate(-165px, 35px);
}

.checkbox-menu .box-title,.profile-options .box-title,.color-options .box-title,.groundStaff-menu .box-title{
    padding: 10px 0 ;
    border-bottom:1px solid #dfebf1;
    text-align: center;
}

.checkbox-menu .menus,.profile-options .menus,.color-options .menus,.groundStaff-menu .menus{
    padding: 10px 20px;
}
/* Checkbox styling */
.checkbox-menu input[type="checkbox"]{
    margin-right: 10px;
}

/* Show the checkbox menu when toggled */
.checkbox-menu.show,.groundStaff-menu.show,.profile-options.showProfile ,.color-options.showColor,.groundStaff-menu.show {
    display: block;
}

body.master-report div#checkboxFilterMenu {
    max-height: 40vw;
    overflow: hidden scroll;
}

/* Checkbox styling */
.checkbox-menu label,.profile-options label ,.color-options label,.groundStaff-menu label {
    display: flex;
    align-items: center; /* Center-align checkbox and text */
    justify-content: start;
    
}

/* suhas @ remove <br> tag below label of label.sf-text-black.text-f-14 */
.checkbox-menu .menus label { padding: 5px 0;}
.checkbox-menu label.center-menu{ justify-content: center;}

.checkbox-menu input[type="checkbox"] ,.groundStaff-menu input[type="radio"] {
    width: 20px;
    height: 20px;
    border:1px solid #BEDFFB;
    margin-right: 10px;
}

.border-bottom-1-grey{
    border-bottom: 1px solid #8C8C8C;
    padding: 5px 0;
}

.div1{ width: 40px;}
.div2{ width: 65px;}
.div3{ width: 68px;}
.div4{ width: 70px;}
.div4-select{ width: 150px;}
.div5{ width: 108px;}
.div6{ width: 92px;}
.div6-user-action{ width: 292px;}
.div7{ width: 68px;}
.div8{ width: 68px;}
.div9{ width: 68px;}
.div10{ width: 88px;}
.div11{ width: 84px;}
.div12{ width: 68px;}
.div13{ width: 88px;}
.div14{ width: 68px;}
.div15{ width: 68px;}
.div16{ width: 104px;}

.edit-date input
{
    width: 60px;
    font-size: 8px;
}

.edit-date .sf-blue-bordered-item {
    padding: 5px 3px;
}

.edit-date .sf-button {
    font-size: 8px;
    min-width: 60px;
}

/* Pseudo-element for right-side active border */
.menu-item.active::after {
    content: '';
    position: absolute;
    right: 0;
    transform: translateY(-10%);
    width: 3px;
    height: 25px;
    background-color: #fff;
}

ul.sub-menu-item li {
    padding: 0 0 0 1rem;
    line-height: 20px;
    font-size: 10px;
}
ul.sub-menu-item li span {
    padding: 0;
}

ul.sub-menu-item li span.active {
    color: #fff;
}

ul.sub-menu-item li a {
    align-items: flex-start;
}

.translate-n165-10{    transform: translate(-165px, 10px);}


/* global props */

.sf-flex-right{
    justify-content: flex-end;
}

.sf-flex-left{
    justify-content: flex-start;
}


.sf-flex-center{
    justify-content: center;
}

/*******************************************************************************
                        action menu container 
*******************************************************************************/

    /* Menu Container */
    .action-menu-container {
        position: relative;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        gap: 15px;
    }

    /* Hamburger Icon */
    .action-menu-container .hamburger-menu {
        font-size: 10px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
        background: #007bff;
        color: white;
        padding: 15px;
        border-radius: 50%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        width: 20px;
        height: 20px;
    }


            
    /* Menu Options */
    .action-menu-container .menu-options {
        display: flex;
        gap: 15px;
        opacity: 0;
        transform: scale(0);
        transition: transform 0.4s ease-out, opacity 0.3s ease-in-out;
    }

    .action-menu-container .menu-item {
        width: 20px;
        height: 25px;
        background: #e9f4fe;
        color: #157cb9;
        text-align: center;
        /* line-height: 45px; */
        border-radius: 50%;
        /* display: flex
    ; */
        justify-content: center;
        align-items: center;
        /* font-size: 20px; */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Hover Effects */
    .action-menu-container:hover .hamburger-menu {
        transform: rotate(360deg) scale(1.1);
    }

    .action-menu-container:hover .menu-options {
        opacity: 1;
        transform: scale(1);
    }

/*******************************************************************************

/* Popup overlay */
.popup-overlay,.bill-of-loading, .container-overlay ,.groundStaff-overlay,.addUser-overlay,.editPopup-overlay,.passwordPopup-overlay,.update-overlay,.invoice-overlay,.boe-update,.cfs-update 
,.products-overlay,.container-gate-in-overlay, .query-update,.importer-overlay,.addAgencyStatus-overlay, .addShipCom-overlay ,.addAgencyDoc-overlay ,.addFreight-overlay ,.addCfs-overlay
,.addWebsite-overlay ,.download-report{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9;
    justify-content: center;
    align-items: center;
  }

  
  /* Popup box */
  .popup-box {
    width: 720px;
    background: #fff;
    border-radius: 8px;
  }
  

  .boe-update  .popup-box{
    width: 434px;
  }

  .cfs-update  .popup-box{
    width: 434px;
  }

  .invoice-overlay .popup-box,.addWebsite-overlay .popup-box{
    width: 462px;
  }

  .products-overlay .popup-box,.container-gate-in-overlay .popup-box{
    width: 580px;
  }
  .addAgencyDoc-overlay .popup-box {
    padding: 20px;
    width: 580px;
  }

  .query-update .popup-box,.passwordPopup-overlay .popup-box
  {
    width: 434px;
  }

  .download-report .popup-box{ width: 620px;}

  .addAgencyStatus-overlay .popup-box{ width: 520px;}

  .sf-blue-bordered-item{
    padding: 10px 15px;
    border: 1px solid #BEDFFB;
    border-radius: 5px;
  }
  
  .sf-blue-bordered-item-padding{
    padding: 7px 15px;
    border: 1px solid #BEDFFB;
    border-radius: 5px;
  }
  
  
/********************************************************************************/
input[type='date'],select{ color: black;}
select option { color: black; }
input[type='date']:invalid,select option:invalid{color: #BFBFBF;}



/************************************************************************************

User page
***************************************************************************************/

/* @Suash - remove the first section with class 'table-body-section p-0 sf-vertical-center section-headers ' for report page, this will have headers as CONSTANT,DOCS,BOE, ETC */

.table-body:not(:has(.table-body-parent)) .table-body-section:nth-child(1n) {background: #FFFFFF;}
.table-body:not(:has(.table-body-parent)) .table-body-section:nth-child(2n) {background: #FAFAFA;}

.row.report-page-button.text-center.pt-3.pb-3.justify-content-between {margin-left: -1rem;}

label.translate-0-5 input[type='radio']{margin-right: 5px; transform: translate(0,5px);}

input[type='text'].date-toggle + img{
    position: absolute;
    transform: translate(125px, -25px);
}


input[type='text'].date-toggle-i-h + img{
    transform: translate(9px, -30px);
}

input[type='text'].date-toggle-i-long + img{    transform: translate(170px, -31px);}

input[type='date'].date-toggle + img{display: none;}


/* accordion css */

.tab-headers {
    display: flex;
}

.tab-headers.border-b-1-solid-l-grey.sf-bg-l-grey.sf-border-radius-5{
    margin: 15px auto;
    width: 70%;
}

.tab-link ,.tablink {
    padding: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.tab-link:hover, .tab-link.active ,.tablink:hover, .tablink.active ,.report-page-button button:hover{
    background-color: #157CB9;
    color: #fff;
    border-radius: 5px;
}

.tab-content,.tabcontent {
    /*display: none;*/
    padding: 20px;
    margin-top: -1px;
}



.dotted-title {
    position: relative;
    padding-right: 20px; /* Space between text and first dot */
    font-size: 1.2em;
}

/* .dotted-title::after {
    content: "";
    display: inline-block;
    width: 4px; Diameter of the dot
    height: 4px;
    background-color: #61AFF6; Dot color
    border-radius: 50%;
    position: absolute;
    transform: translate(-0px, -64px);
} */



/************master report invoice******************/


.table-body {
    overflow-x: auto;
    position: relative;
  }

  .table-body-section span.sf-round-button-i.sf-round-button-waiting {
    display: inline-block;padding: 0px 2px;
}
  /* Header and row sections */
  .table-head-section,
  .table-body-section {
    display: flex;
    min-width: fit-content;
    position: relative;
  }
  
  /* Header and cell blocks */
  .div4.th,
  .div4.td {
    min-width: 150px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  /* Alternate background colors for body rows */
  .table-body-section:nth-child(odd) {
    background-color: #FAFAFA;
  }
  .table-body-section:nth-child(even) {
    background-color: #FFFFFF;
  }
  
  /* Sticky positioning for first 4 columns */
  .div4.th:nth-child(1),
  .div4.td:nth-child(1) {
    position: sticky;
    left: 0;
    z-index: 3;
    background: inherit;
  }
  
  .div4.th:nth-child(2),
  .div4.td:nth-child(2) {
    position: sticky;
    left: 150px;
    z-index: 3;
    background: inherit;
  }
  
  .div4.th:nth-child(3),
  .div4.td:nth-child(3) {
    position: sticky;
    left: 300px;
    z-index: 3;
    background: inherit;
  }
  
  .div4.th:nth-child(4),
  .div4.td:nth-child(4) {
    position: sticky;
    left: 450px;
    z-index: 3;
    background: inherit;
  }


/****************************Department Agency*******************************/
/* Hide all icons initially */
.state-button i.fa-check,.state-button i.fa-cross {
display: none;
font-size:15px;
}


/* Show the correct icon (check) when in correct state */
.state-button.correct .fa-check {
    display: block;
    color: green;
    background: #42B60B29;
    border-radius: 50%;
    border: 1px solid #42B60B;
    padding: 2px 1px 2px 2px;
}

/* Show the wrong icon (cross) when in wrong state */
.state-button.wrong .fa-times {
display: block;
color: red;
background: #E03F2929;
border-radius: 50%;
border: 1px solid #E03F29;
padding: 2px 4px;
}

/* No icon is shown in blank state */
.state-button.blank {
background-color: #f0f0f0;
}

.state-button:hover {
background-color: #e1e1e1;
}




/***************************chatu code******************************/
  .state-button {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #157CB9; /* Default border */
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .state-button i {
    display: none;
    font-size: 16px;
  }

  .state-button.green {
    border-color: green;
    background-color: lightgreen;
  }

  .state-button.green i.fa-check {
    display: inline-block;
    color: green;
  }

  .state-button.red {
    border-color: red;
    background-color: lightcoral;
  }

  .state-button.red i.fa-times {
    display: inline-block;
    color: red;
  }



  /* auth pages css */
  body.auth-page {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Grey overlay */
  body.auth-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Faint grey overlay (adjust opacity as needed) */
    z-index: -1; /* Place the overlay behind the content */
  }
  .container {
    background: rgba(255, 255, 255, 0.9); /* White overlay */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 400px;
    padding: 30px;
  }
  
  .form-container {
    position: relative;
  }
  
  .form-box {
    display: none;
  }
  
  .form-box.active {
    display: block;
  }
  
  
  .input-box {
    position: relative;
    margin-bottom: 20px;
  }
  
  .input-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    background: #f9f9f9;
  }
  
  .input-box label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
    transition: 0.3s;
    pointer-events: none;
  }
  
  .input-box input:focus ~ label,
  .input-box input:valid ~ label {
    top: 0;
    font-size: 12px;
    color: #BEDFFB;
  }
  
  .forgot-password {
    text-align: right;
    margin-bottom: 20px;
  }
  
  .register-link,
  .login-link {
    text-align: center;
    margin-top: 20px;
  }
  
  .register-link a,
  .login-link a,
  .forgot-password a {
    text-decoration: none;
  }
  
  .register-link a:hover,
  .login-link a:hover,
  .forgot-password a:hover {
    text-decoration: underline;
  }

/*************************************************************************

                Search Icon CSS

*************************************************************************/
  .search-container {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #333;
    width: -webkit-fill-available;
    padding: 5px;
}

.search-container i {
    margin-right: 8px;
    color: #555;
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    padding: 5px;
    max-width: -webkit-fill-available;
}

  /****************************************************************************************

                        Style for table        

  ****************************************************************************************/
  /* Add these styles */
  .sort-icon {
    font-size: 0.8em;
    margin-left: 5px;
    display: none;
    }

    .sort-icon.asc,
    .sort-icon.desc {
        display: none;
    }

    [data-sort-key] .fa-sort {
        display: inline-block;
    }

    .page-item {
        background: none;
        border: none;
        padding: 5px 10px;
        margin: 0 2px;
        cursor: pointer;
        color: #8C8C8C;
    }

    .page-item.active {
        font-weight: bold;
        color: #157CB9;
    }

    .page-item:hover{
        background-color: #157CB9;
        border-radius: 5px;
        padding: 5px 5px;
        color: #fff;
    }
    .page-item:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    #search-input {
        padding: 4px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        width: 300px;
    }



/***************************************************************************************************

                            Accordion CSS

***************************************************************************************************/

.accordion {
    overflow: hidden;
}


.accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.accordion-label:hover {
    background: #f8f9fa;
}

.accordion-label::after {
    content: "+";
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
    transition: transform 0.3s, content 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 15px;
}

.accordion-content .col-4{padding: 0;}
.accordion input[type="radio"] {
    display: none;
}

.accordion input[type="radio"]:checked ~ .accordion-content {
    max-height:max-content;
    padding: 15px;
}

.accordion input[type="radio"]:checked + .accordion-label::after {
    content: "-";
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

/* Ensuring only one accordion stays open at a time */
.accordion input[type="radio"]:not(:checked) ~ .accordion-content {
    max-height: 0;
    padding: 0 15px;
}


/**********************************************************************************************************
global css

**********************************************************************************************************/
.text-left{text-align: left;}
.text-right{text-align: right;}
.text-center{text-align: center;}
.float-left{float: left;}
.float-right{float: right;}



.margin-10tb{margin:10px 0;}


.pointer-c{cursor: pointer;}




table tbody tr td{
	font-size: 10px;
}
table thead tr th{
	font-size: 10px;
	font-weight: bold;
}
.dataTables_info, .dataTables_paginate, .dataTables_filter label{
	font-size: 10px;
}
table thead tr td select{
	font-size: 10px;
}

.width-25{width: 25px;}

.page-link {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 3px;
}
.page-link.active {
    /*background-color: #007bff;*/
    color: #157CB9;
    font-weight: bold;
}

div#uploadBox {
    text-align: -webkit-center;
}

.upload-box form {
    width: 300px;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    text-align: center;
    position: relative;
    padding: 20px;
    background-image: repeating-linear-gradient(45deg, #f9f9f9, #f9f9f9 10px, #f1f1f1 10px, #f1f1f1 20px);
    cursor: pointer;
    transition: border-color 0.3s;
    margin: 15px 0 0;
}

.upload-box.dragover {
  border-color: #007bff;
}

.upload-box i {
  font-size: 30px;
  color: #aaa;
}

.upload-box p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.file-input {
  display: none;
}

.file-name {
  margin-top: 10px;
  color: green;
  font-weight: bold;
}


/* back and next buttons */

button#back-btn,button#next-btn {
    position: absolute;
    top: 6.2rem;
    font-size: 12px;
    z-index: 2;
}

button#back-btn {
    right: 2rem;
}

button#next-btn {
    right: 1rem;
}

.job-detail-section .tab-headers.main-headers.border-b-1-solid-l-grey.pt-3 {
    padding: 0 !important;
}

.job-detail-section .col-12.sf-flex-right i {
    position: absolute;
    right: 4rem;
}


.job-detail-section button.tab-link ,.job-detail-section button.tablink{
    font-size: 10px;
    padding: 5px 0px;
}

.job-detail-section button.tab-link:not(.active),.job-detail-section button.tablink:not(.active){
    color: #e3e3e3;
}

.job-detail-section label{    font-size: 10px;padding: 2px 7px !important;}

.job-detail-section .drag-and-drop .section-header{font-size: 12px;}
.job-detail-section .drag-and-drop-container div#agencyList input {margin: 0 5px;}
.job-detail-section .drag-and-drop-container .draggable {padding: 5px 10px;font-size: 12px;}

.job-detail-section div#tabContainerTemplate {min-height: 25rem;max-height: 25rem;overflow: hidden scroll;}

.job-detail-section .tab-content div.tabcontent h3.text-center {
    font-size: 14px !important;
}


/* Agency Page */

div.row.data-section{
    padding: 20px 0;
}



/* Zeus theme */
.color-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }

  .color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
  }

  .color-circle:hover {
    border-color: #333;
  }

  .color-circle::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    background: #333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    display: none;
    white-space: nowrap;
    z-index: 1;
  }

  .color-circle:hover::after {
    display: block;
  }

  .themed-box {
    padding: 20px;
    border: 2px solid;
    margin-top: 10px;
  }


/* @Suhas map these classes to html pages */

/* background white container */
.theme-color-0-bg-white{background: #FFF;} 
/* background theme */
.theme-color-0{background: #E9F4FE;} 
/* Sidenav */
.theme-color-0-bg-d{background-color: #325979;border-right:1px solid #325979;} 
/* background */
.theme-color-0-bg{background-color: #F5F8FB;} 
/* section division */
.theme-color-0-bg-sec-div{background-color: #F5F5F5;} 
/* background in light */
.theme-color-0-bg-l{background-color: #A4E2F9;} 
/* background in light-2*/
.theme-color-0-bg-l-2 {background: #F7FBFF;} 
/* background blue circle */
.theme-color-0-blue-round{background: #157CB9;} 
/* tax color */
.theme-color-0-text{color: #157CB9;} 
/* text in dark */
.theme-color-0-text-d{color: #111111;} 
/* border color */
.theme-color-0-border{border-color: #BEDFFB;}
.theme-color-0-border-a{border:1px solid #BEDFFB;} 
.theme-color-0-border-diff-1{border:3px solid #E4EDF4;} 
.theme-color-0-border-diff-2{border:2px solid #BEDFFB;} 
.theme-color-0-border-u-grey{border-top:1px solid #8C8C8C;} 
.theme-color-0-border-u{border-top:1px solid #E4EDF4;} 
.theme-color-0-border-r{border-right:1px solid #BEDFFB;} 
.theme-color-0-border-b{border-bottom:1px solid #BEDFFB;} 
.theme-color-0-border-l{border-left:1px solid #BEDFFB;} 
.theme-color-0-border-l-before {border-left: 2px solid #157CB9;} 
.theme-color-0-border-l-before-dashed {border-left: 2px dashed #8C8C8C}
.theme-color-0-background-mask-right {background: url(../../assets/images/bg-mask.png);} 

.theme-color-0-background-mask-left {background-image: url(../../assets/images/mask-2.png);} 
.theme-color-0-background-do-background-mask-right-square {background: url(../../assets/images/mask-3.png);} 



.theme-color-1{color: #4F8EB5;}
.theme-color-1-bg-d{background-color: #1F4A6D;}

.theme-color-1-bg{background-color: #3F7396;}

.theme-color-1-bg-l{background-color: #A4E2F9;}

.theme-color-1-text{color: #77BDDF;}

.theme-color-1-text-d{color: #4F8EB5;}

.theme-color-1-border{border-color: #BEDFFB;}


.theme-color-2{color: #3AADA8;}
.theme-color-2-bg-d{background-color: #fff;}

.theme-color-2-bg{background-color: #3F7396;}

.theme-color-2-bg-l{background-color: #3AADA81A;}

.theme-color-2-text{color: #A2D5AC;}

.theme-color-2-text-d{color: #3AADA8;}

.theme-color-2-border{border-color: #3AADA81A;}


.theme-color-3{color: #E7C3A8;}
.theme-color-3-bg-d{background-color: #fff;}

.theme-color-3-bg{background-color: #BC8867;}

.theme-color-3-bg-l{background-color: #E7C3A8;}

.theme-color-3-text{color: #C16C49;}

.theme-color-3-text-d{color: #E7C3A8;}

.theme-color-3-border{border-color: #C16C491A;}


.theme-color-4{color: #6E61CA;}
.theme-color-4-bg-d{background-color: #fff;}

.theme-color-4-bg{background-color: #C282FA;}

.theme-color-4-bg-l{background-color: #E7C3A8;}

.theme-color-4-text{color: #DBBAF7;}

.theme-color-4-text-d{color: #6E61CA;}

.theme-color-4-border{border-color: #6E61CA1A;}




.theme-color-5{color: #FF9899;}
.theme-color-5-bg-d{background-color: #fff;}

.theme-color-5-bg{background-color:#FF9899 ;}

.theme-color-5-bg-l{background-color: #FFAFB0;}

.theme-color-5-text{color: #FFAFB0;}

.theme-color-5-text-d{color: #FF9899;}

.theme-color-5-border{border-color: #FF98991A;}


.theme-color-6{color: #F0B829;}

.theme-color-6-bg-d{background-color: #fff;}

.theme-color-6-bg{background-color:#F0B8291A ;}

.theme-color-6-bg-l{background-color: #F0B8291A;}

.theme-color-6-text{color: #F0B829;}

.theme-color-6-text-d{color: #F0B829;}

.theme-color-6-border{border-color: #F0B8291A;}




.theme-color-7{color: #189AB4;}
.theme-color-7-bg-d{background-color: #fff;}

.theme-color-7-bg{background-color:#74E7DA ;}

.theme-color-7-bg-l{background-color: #189AB41A;}

.theme-color-7-text{color: #74E7DA;}

.theme-color-7-text-d{color: #189AB4;}

.theme-color-7-border{border-color: #189AB41A;}




.theme-color-8{color: #B5A387;}
.theme-color-8-bg-d{background-color: #B5A387;}

.theme-color-8-bg{background-color:#B5A38733 ;}

.theme-color-8-bg-l{background-color: #B5A3871A;}

.theme-color-8-text{color: #B5A387;}

.theme-color-8-text-d{color: #B5A387;}

.theme-color-8-border{border-color: #B5A3871A;}



.theme-color-9{color: #A2AB9C;}
.theme-color-9-bg-d{background-color: #A2AB9C;}

.theme-color-9-bg{background-color:#A2AB9C33 ;}

.theme-color-9-bg-l{background-color: #A2AB9C1A;}

.theme-color-9-text{color: #A2AB9C1A;}

.theme-color-9-text-d{color: #A2AB9C;}

.theme-color-9-border{border-color: #A2AB9C1A;}


.theme-color-10{color: #B3A7A1;}
.theme-color-10-bg-d{background-color: #B3A7A1;}

.theme-color-10-bg{background-color:#B3A7A133 ;}

.theme-color-10-bg-l{background-color: #B3A7A11A;}

.theme-color-10-text{color: #B3A7A1;}

.theme-color-10-text-d{color: #B3A7A1;}

.theme-color-10-border{border-color: #B3A7A11A;}



.theme-color-11{color: #91AEA7;}
.theme-color-11-bg-d{background-color: #91AEA7;}

.theme-color-11-bg{background-color:#9BB5AE33 ;}

.theme-color-11-bg-l{background-color: #91AEA71A;}

.theme-color-11-text{color: #91AEA7;}

.theme-color-11-text-d{color: #91AEA7;}

.theme-color-11-border{border-color: #91AEA71A;}