* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Lato';
  src: url('../Lato-Regular.eot');
  src: url('../Lato-Regular.eot?#iefix') format('embedded-opentype'),
    url('../Lato-Regular.woff2') format('woff2'),
    url('../Lato-Regular.woff') format('woff'),
    url('../Lato-Regular.ttf') format('truetype'),
    url('../Lato-Regular.svg#Lato-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../Lato-Medium.eot');
  src: url('../Lato-Medium.eot?#iefix') format('embedded-opentype'),
    url('../Lato-Medium.woff2') format('woff2'),
    url('../Lato-Medium.woff') format('woff'),
    url('../Lato-Medium.ttf') format('truetype'),
    url('../Lato-Medium.svg#Lato-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../Lato-Bold.eot');
  src: url('../Lato-Bold.eot?#iefix') format('embedded-opentype'),
    url('../Lato-Bold.woff2') format('woff2'),
    url('../Lato-Bold.woff') format('woff'),
    url('../Lato-Bold.ttf') format('truetype'),
    url('../Lato-Bold.svg#Lato-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../Lato-Semibold.eot');
  src: url('../Lato-Semibold.eot?#iefix') format('embedded-opentype'),
    url('../Lato-Semibold.woff2') format('woff2'),
    url('../Lato-Semibold.woff') format('woff'),
    url('../Lato-Semibold.ttf') format('truetype'),
    url('../Lato-Semibold.svg#Lato-Semibold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*Secondary Font*/
@font-face {
  font-family: 'interBold';
  src: url('../Inter-Bold.eot');
  src: url('../Inter-Bold.eot?#iefix') format('embedded-opentype'),
    url('../Inter-Bold.woff2') format('woff2'),
    url('../Inter-Bold.woff') format('woff'),
    url('../Inter-Bold.ttf') format('truetype'),
    url('../Inter-Bold.svg#Inter-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'interSemibold';
  src: url('../Inter-SemiBold.eot');
  src: url('../Inter-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../Inter-SemiBold.woff2') format('woff2'),
    url('../Inter-SemiBold.woff') format('woff'),
    url('../Inter-SemiBold.ttf') format('truetype'),
    url('../Inter-SemiBold.svg#Inter-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'interRegular';
  src: url('../Inter-Regular.eot');
  src: url('../Inter-Regular.eot?#iefix') format('embedded-opentype'),
    url('../Inter-Regular.woff2') format('woff2'),
    url('../Inter-Regular.woff') format('woff'),
    url('../Inter-Regular.ttf') format('truetype'),
    url('../Inter-Regular.svg#Inter-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'interMedium';
  src: url('../Inter-Medium.eot');
  src: url('../Inter-Medium.eot?#iefix') format('embedded-opentype'),
    url('../Inter-Medium.woff2') format('woff2'),
    url('../Inter-Medium.woff') format('woff'),
    url('../Inter-Medium.ttf') format('truetype'),
    url('../Inter-Medium.svg#Inter-Medium') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.font-regular {
  font-family: 'Lato' !important;
}

.font-medium {
  font-family: 'Lato' !important;
  font-weight: 500;
}

.font-semibold {
  font-family: 'Lato' !important;
  font-weight: 600;
}

.font-bold {
  font-family: 'Lato' !important;
  font-weight: 700;
}

body {
  font-family: 'Lato' !important;
}

.font-8 {
  font-size: 8px !important;
}

.font-10 {
  font-size: 10px !important;
}

.font-11 {
  font-size: 11px !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px !important;
}

.font-15 {
  font-size: 15px !important;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

body,
html {
  height: 100%;
  background: #F4F4FB;
}

/*common styles starts*/
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: end;
}

.flex-column {
  flex-direction: column;
}

.border-0 {
  border: 0;
}

.bg-transparent {
  background: transparent
}

.ms-auto {
  margin-left: auto;
}

.me-auto {
  margin-right: auto;
}

.mt-auto {
  margin-top: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.text-center {
  text-align: center !important;
}

.text-truncate {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w-22 {
  width: 22px
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.text-primary {
  color: #223E91;
}

.text-black {
  color: #3D3D3D;
}

.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/*Header styles starts*/

.menu-container {
  display: flex;
  align-items: center;
  /* gap: 24px; */
  padding: 10px 20px;
  background-color: #fff;
}

.logo {
  /* width: 80px; */
  margin-right: 10px;
  /* margin-left: -2% !important */
}

.menu-item {
  position: relative;
}

.navbar-menu {
  padding-left: 0;
  display: flex;
  gap: 10px;
  margin-bottom: -1px;
}

.navbar-menu .menu-item {
  list-style-type: none;
  float: left;
}

.navbar-menu .menu-item a {
  color: #5B5FC7;
  font-size: 14px;
  padding: 8px 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.navbar-menu .menu-item a.active {
  background-color: #F0F1FF;
}

.navbar-menu .menu-item a:hover {
  background-color: #F0F1FF;
}

.navbar-menu .menu-item a .dropdown-icon {
  transform: rotate(180deg);
  margin-left: 15px;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  min-width: 180px;
  z-index: 10;
  padding: 10px;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  border-radius: 8px;
  transition: background 0.2s;
}

.dropdown a:hover {
  background-color: #f4f4fd;
  color: #4B51E1;
}

.menu-item:hover .dropdown {
  display: block;
}



/*Header styles ends*/

.dashboard-container {
  display: flex;
  height: 100vh;
}

.dashboard-container-budgetary {
  height: 100vh;

}

/* Sidebar */


.sidebar-header h2 {
  margin-bottom: 20px;
}

.collapse-menu {
  display: none;
  border: none;
  background-color: transparent;
  margin-bottom: 20px;
  cursor: pointer;
}

.sidebar.active {
  .collapse-menu {
    display: block !important;
  }
}

.sidebar-offcanvas {
  position: fixed;
  width: 335px;
  background-color: #fff;
  box-shadow: 0 0 8px #4e4f5b30;
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.sidebar-offcanvas.active {
  left: 0;
}

@media (max-width:850px) {
  .sidebar {
    display: none !important;
  }

  .sidebar-header h2 {
    font-size: 20px !important;
  }

  .collapse-menu-mobile {
    display: block !important;
    border-bottom: 1px solid #eee !important;
    padding: 10px 0 !important;
    width: auto;
    display: inline-flex !important;
    margin: auto;
  }

  .error-toast {
    width: 400px !important;
  }

  .mobile-chat {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sidebar-offcanvas {
    display: flex;
  }

  .chat-message {
    max-width: 75vw;
  }

  .chat-bubble {
    font-size: 14px;

    width: 450px !important;
  }

  .chat-bubble-long {
    width: 450px !important;
  }

  .options {
    width: 232px !important;
  }

  .option-card {
    width: 100% !important;
  }

  .font-16 {
    font-size: 14px !important;
  }
}

.menu-button {
  font-size: 12px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #5B5FC7;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  height: fit-content;
}

.btn-small {
  padding: 8px 20px !important;
}

.btn-primary:hover {
  background-color: #494da9;
}

.btn-danger {
  background-color: #FF6270 !important;
}

.btn-danger:hover {
  background-color: #eb525f !important;
}

.btn-radius {
  border-radius: 4px;
}

.btn-outline-white {
  border: 1px solid #DFDFDF;
  background-color: #fff;
  padding: 10px 15px;
  cursor: pointer;
}

.btn-outline-white:hover {
  background-color: #f4f4f4 !important;
}

.new-chat-btn {
  margin-bottom: 20px;
}

.recent-chats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
}

.view-all {
  color: #5B5FC7;
  text-decoration: none;
}

.chat-list {
  list-style: none;
  /* overflow-y: auto; */
  flex-grow: 1;
  /* height: calc(100vh - 185px); */
  position: relative;
  font-family: "Lato";
  min-height: 250px;
}

.chat-item {
  padding: 8px 10px 8px 5px;
  font-size: 16px;
  border-radius: 8px;
  gap: 15px;
  background: transparent;
  transition: background 0.2s;
}

.chat-item.active {
  background-color: #EFEFFF;
}

.chat-item.active .icon-container {
  background-color: #5B5FC7;
}

.chat-item.active .icon-container img {
  filter: brightness(100);
}

.chat-item:hover {
  color: #5B5FC7;
}

/* Main Panel */
.main-panel {
  flex: 1;
  padding: 10px 20px;
  /* height: calc(100vh - 10px); */
  width: 80%;
}

.main-panel-budgetary {
  flex: 1;
  padding: 10px 20px;
  /* height: calc(100vh - 10px); */
  width: 100%;
}

.main-container {
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0px 23px !important;
}

.main-content {
  max-width: 600px;
  text-align: center;
  padding: 20px;
}

.icon-circle {
  width: 143px;
  height: 143px;
  background-color: #5B5FC7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: white;
  margin: 0 auto 20px;
}


.subtext {
  color: #5C5C5D;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.section-highlight {
  background: #EFF6FF;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  margin-bottom: 25px;
  border: 1px solid #C6DFFE;
}


.section-highlight ul {
  list-style: none;
  padding-left: 0;
}

.get-started-btn {
  background-color: #5B5FC7;
  color: white;
  font-size: 14px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.get-started-btn:hover {
  background-color: #5b50cc;
}

.icon-container {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #EEEFFF;
}


/*Slim scroll*/
.slim-scroll::-webkit-scrollbar {
  width: 6px;
}

.slim-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.slim-scroll::-webkit-scrollbar-thumb {
  background-color: #b0b0b0;
  border-radius: 10px;
  border: 1px solid transparent;
}

.info-icon {
  width: 20px;
  height: 20px;
  background-color: #165DFB;
  border-radius: 50%;
}

.info-list li {
  color: #193CB8;
  gap: 5px;
  margin-bottom: 10px;
}

.btn-collapse {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: 20px;
  background-color: #F2EDFF;
  border: 1px solid #eee;
  cursor: pointer;
}

.btn-collapse:hover {
  background-color: #e4dbfb;
}

.sidebar.active {
  width: 80px;
}

.sidebar.active .hidden {
  visibility: hidden;
}

.sidebar.active .hide {
  display: none;
}

.sidebar.active .btn-collapse img {
  transform: rotate(180deg);
}

/*Chatpage styles starts*/

.chat-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.studio-container {
  width: 100%;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #D7D7FF;
}

.chat-logo {
  min-width: 40px !important;
  min-height: 40px !important;
  background: #5B5FC7;
  border-radius: 50%;
  margin-right: 12px;
  border: 6px solid #E7E7FF;
}

.chat-logo img {
  filter: brightness(100);
}

.chat-title {
  color: #3D3D3D;
}

.chat-body,
.chat-history-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.chat-date-divider {
  text-align: center;
  color: #979696;
  margin-bottom: 12px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #E3E3E3;
}

.bot-response,
.user-response {
  gap: 10px;
  max-width: 80%;
}

.bot-avatar {
  background-color: #5B5FC6;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.user-avatar {
  background-color: #E5E5E5;
}

.user-avatar img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.bot-avatar img {
  width: 17px;
}

.chat-message {
  margin-bottom: 24px;
}

.chat-bubble {
  background-color: #F3F4F6;
  border-radius: 8px;
  padding: 16px;
  width: 486px !important;
}

.response-error {
  background-color: #FFEAEB;
  border: 1px solid #FF9595;
}

.user-response .chat-bubble {
  background-color: #5B5FC7;
  color: #fff;
}

.chat-message.user .chat-bubble {
  margin-left: 0;
}

.chat-message.bot .chat-bubble {
  margin-right: 0;
}

.chat-question {
  font-weight: 500;
  margin-bottom: 8px;
}

.required {
  color: red;
}

.chat-response {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e4e6eb;
}

.chat-time {
  font-size: 10px;
  color: #9DA6B2;
  margin-top: 6px;
  font-weight: 600;
}

.options {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.option-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e4e6eb;
  text-align: center;
  padding: 25px 12px;
  font-size: 12px;
  cursor: pointer;
}

.option-card.active {
  background-color: #F7F7FF;
  border: 1px solid #5B5FC7;
}

.option-card .icon {
  font-size: 24px;
  margin-bottom: 8px;
  color: #646cff;
}

.option-desc {
  color: #868789;
}

.option-title {
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 15px;
}

.chat-footer-container {
  padding: 16px;
}

.chat-footer {

  position: relative;
  margin-top: auto;
}

.chat-input {
  display: flex;
  border: 1px solid #9C9AA5;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  gap: 10px;
}

.blank {
  opacity: 0;
}

.chat-input input {
  flex: 1;
  padding: 7px;
  outline: none;
  font-size: 14px;
}

.chat-input .send-btn {
  padding: 7px;
}

.custom-textarea {
  padding: 10px;
  height: 150px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  width: 100%;
  resize: none;
}

.alert-warning {
  background-color: #FBFBF2;
  border: 1px solid #FBF1C1;
  border-radius: 8px;
  padding: 8px 10px;
  gap: 10px;
  margin-bottom: 10px;
  bottom: 100%;
  width: 100%;
  left: 0;
}

.alert-content {
  color: #DCA47F;
}

.drop-zone {
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  background-color: #ffffff;
  height: 180px;
  color: #a1a1aa;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.2s, border-color 0.2s;
  padding: 10px;
}

.dragged-container {
  gap: 10px;
  flex-wrap: wrap;
  max-height: 100%;
  overflow: auto;
}

.drop-zone:hover {
  background-color: #f0f4ff;
  border-color: #4b51e1;
  color: #4b51e1;
}

.drop-zone:hover .drop-zone-icon {
  filter: unset;
  opacity: 1;
}

.drop-zone-icon {
  margin-bottom: 8px;
  filter: grayscale(1);
  opacity: 0.4;
}

.drop-zone span {
  font-size: 14px;
}

.item-dragged {
  gap: 8px;
  cursor: default !important;
}

.drop-zone:has(.item-dragged):hover {
  border: 2px dashed #d1d5db !important;
  background-color: #ffffff !important;
  cursor: default;
}

.item-dragged .close-icon {
  width: 8px;
  margin-top: 3px;
}

.drag-icon {
  /* margin-right: 10px; */
  height: 16px;
  display: block;
}

.tag.active .drag-icon {
  display: inline;
}

/*Chatpage styles ends*/

/*Category panel styles starts*/
.container {
  display: flex;
  height: 100%;
  max-width: 100%;
}

/* Left Sidebar */
.left-panel {
  width: 300px;
  min-width: 220px;
  max-width: 460px;
  transition: width 0.2s ease;
}

.helptext {
  color: #A5A3AF;
}

.title-panel {
  padding: 10px 15px;
  border-bottom: 1px solid #D7D7FF;
}

/* Divider */
.divider {
  width: 1px;
  cursor: ew-resize;
  background-color: #D7D7FF;
  position: relative;
}

.divider:after {
  content: "";
  width: 4px;
  height: 80px;
  border-radius: 10px;
  position: absolute;
  top: 20%;
  background-color: #EFEFFF;
  border: 1px solid #D7D7FF;
  left: 50%;
  transform: translateX(-50%);
}

.divider:hover {
  background-color: #5B5FC7;
}

/* Right Panel Placeholder */
.right-panel {
  flex: 1;
}

/* Accordion */
.accordion-container {
  padding: 15px;
  overflow-y: auto;
}

.accordion-section {
  margin-bottom: 20px;
}

.bxt-accordion-header {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3D3D3D;
}

.bxt-accordion-body {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
}

.accordion-section.active .bxt-accordion-body {
  display: flex;
}

.accordion-section:not(.active) .accordion-arrow {
  transform: rotate(180deg);
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #3D3D3D;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: grab;
  transition: background 0.2s;
  font-weight: 600;
}

.tag-bg1 {
  background-color: #EFF6FF;
  border: 1px solid #BFDBFF;
}

.tag-bg1.active {
  border: 1px solid #5da4ff;
}

.tag-bg2 {
  background-color: #FCEFF0;
  border: 1px solid #FDE2E4;
}

.tag-bg2.active {
  border: 1px solid #febabe;
}

.tag-bg3 {
  background-color: #FFF3EC;
  border: 1px solid #FFDDCB;
}

.tag-bg3.active {
  border: 1px solid #ffa676;
}

.tag-bg4 {
  background-color: #FDF2F7;
  border: 1px solid #FFC4E5;
}

.tag-bg4 {
  background-color: #FDF2F7;
  border: 1px solid #FFC4E5;
}

.tag-bg5.active {
  border: 1px solid #ffb662;
}

.tag-bg6 {
  background-color: #ECFEFF;
  border: 1px solid #A2F4FD;
}

.tag-bg6.active {
  border: 1px solid #56e8f8;
}

.tag-bg7 {
  background-color: #EEF2FF;
  border: 1px solid #C7D2FF;
}

.tag-bg8 {
  background-color: #FAF5FF;
  border: 1px solid #EAD4FF;
}

.tag-bg8.active {
  border: 1px solid #6483fe;
}

.tag-bg9 {
  background-color: #EFFDF4;
  border: 1px solid #71DE97;
}

.tag-bg9.active {
  border: 1px solid #2aff74;
}

.tag-bg10 {
  background-color: #FEFCE8;
  border: 1px solid #FEF186;
}

.tag-bg10.active {
  border: 1px solid #e1d037;
}

.tag-bg11 {
  background-color: #EFF6FF;
  border: 1px solid #BFDBFF;
}

.tag-bg11.active {
  border: 1px solid #4a97fc;
}

.tag-bg12 {
  background-color: #F8FFE4;
  border: 1px solid #E4F0C2;
}

.tag-bg12.active {
  border: 1px solid #d2ff57;
}

.tag-bg13 {
  background-color: #F2FFFF;
  border: 1px solid #BEF9F9;
}

.tag-bg13.active {
  border: 1px solid #32eaea;
}

.eye-icon {
  font-size: 14px;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  align-items: center;
  width: 33px;
  justify-content: center;
  height: 100%;
  border-radius: 0 50px 50px 0;
  background-color: rgb(255 255 255);
}

.eye-icon img {
  width: 20px;
}

.tag:hover .eye-icon {
  display: flex !important;
}

/*Chat form styles*/
.form-container {
  width: 100%;
  margin-top: 20px;
}

.form-set {
  margin-bottom: 10px;
}

.form-label {
  margin-bottom: 5px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #3D3D3D;
}

.form-control {
  background-color: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.checkbox-container {
  background-color: #fff;
  border: 1px solid #E5E7EB;
  padding: 10px;
  border-radius: 4px;
}

.checkbox-group {
  width: 100%;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #c5c8d0;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}

.checkbox-label input[type="checkbox"]:checked {
  background-color: #5B5FC7;
  border-color: #5B5FC7;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: url(/tick.svg);
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.btn-container {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.chat-highlight {
  background-color: #F8F8F8;
  border: 1px solid #E5E5E5;
  padding: 10px;
  border-radius: 4px;
}

.trans-container {
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  gap: 10px;

  .file-name {
    font-size: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    padding: 8px 10px;
    border-top: 1px solid #E8E8E8;
  }
}


.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0rem 0.75rem;
  border-radius: 0.25rem;
}


.search-bar {
  height: 40px;
  border-radius: 6px;
  border: 1.5px solid #E7E5E5;
  margin-right: 16px;

  input {
    padding: 8px 12px;

    &:focus-visible {
      outline: none;
    }
  }

  button {
    img {
      margin-top: 4px;
    }
  }
}

.filter-btn {
  height: 40px;
  border-radius: 6px;
  border: 1.5px solid #E7E5E5;
  padding: 8px 12px;

  img {
    margin-top: 4px;
  }
}

.filter-btn:active {
  border: 1.5px solid #5B5FC7;
  background-color: #E8E9FF;
}


.table-container {
  border-radius: 10px !important;
  border: 1px solid #E2E8F0;

}


.custom-table {
  width: 100%;
  border-collapse: collapse;

  thead tr th {
    color: #5B5FC7;
    background-color: #F7F7FF;
    font-size: 13px;
    padding: 18px 18px;
    text-align: start;

    &:first-child {
      border-top-left-radius: 10px;
    }

    &:last-child {
      border-top-right-radius: 10px;
    }
  }


  tbody tr td {
    color: #222222;
    font-size: 13px;
    padding: 14px 18px;
    border-bottom: 1px solid #E2E8F0;

    .rename-btn {
      margin-left: 2px;
    }
  }


  tbody tr:last-child td {
    border-bottom: none !important;
  }
}


.table-sort {
  cursor: pointer;
  position: relative;
  margin-left: 5px;

  .sort-up-position {
    position: absolute;
    top: 2px;
    left: 8px;
  }

  .sort-down-position {
    position: absolute;
    bottom: 2px;
    left: 8px;
  }
}

.table-records {
  margin-top: 20px;
  font-size: 14px;
  color: #455569;

  .current-records {
    font-size: 14px;
    color: #222222;
  }
}

.w-150 {
  width: 150px;
}

.link-clr {
  color: #0072CF;
}

.rename-btn {
  padding: 2px !important;
}

.actions {
  button {
    padding: 4px !important;
  }
}

.d-inline-block {
  display: inline-block;
}

.vertical-divider {
  height: 20px;
  margin: 0px 3px;
  width: 1px;
  background-color: #CFCFCF;
}

.load-more-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-input,
.form-select {
  padding: 12px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: none;
}

.form-select {
  background-color: #fff;
  background-image: url(../images/dropdown-icon.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.advance-filter-panel {
  width: 370px;
  position: absolute;
  top: 57px;
  right: 17px;
  padding: 20px;
  border-radius: 3px;
  background: #FFF;
  box-shadow: 0px 2px 14px rgba(149, 148, 164, 0.25);
  color: #434343;
  z-index: 9999;

  .form-input,
  .form-select {
    width: 154px;
  }
}

.chat-rename-btn {
  padding: 2px;
  margin: 6px 0px 0px 4px !important;
}

.chat-actions {
  .btn {
    padding: 0px !important;
  }

  display: flex;
  gap: 8px;
}

.close-btn {
  padding: 2px !important;
}

.gap-3 {
  gap: 20px;
}

.gap-2 {
  gap: 14px;
}

.mt-24 {
  margin-top: 24px;
}

.d-none {
  display: none;
}

.w-100 {
  width: 100%;
}

.ps-0 {
  padding-left: 0px;
}

.btn-secondary {
  background-color: transparent;
  color: #A9A9A9;
  border: 1px solid #A9A9A9;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  height: fit-content;
}

.btn-secondary:hover {
  background-color: #A9A9A9;
  color: #fff;
}


.btn-negative {
  background-color: #FC5B5B;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.btn-negative:hover {
  background-color: #F25454;
}


/*modal styles*/
.open-modal-btn {
  width: fit-content;
  height: fit-content;
  margin-right: 18px
}

.modal {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999 !important;
  opacity: 1;
  transition: all 0.2s ease;
}

.modal:target {
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.modal:target {
  .modal-backdrop {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: white;
  border-radius: 8px;
  padding: 0;
  width: 550px;
  max-width: 90%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
}

.modal:target .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border: none;
}

.modal-body {
  padding: 10px 25px
}

.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 0px 15px 15px;
  border-radius: 0 0 8px 8px;
  border: none;
}

.info-modal {
  width: 464px;
  height: 640px;
  padding: 14px;
  position: relative;

  .modal-body {
    width: 100%;
    height: 100%;
    padding: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
  }

  .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background-color: #fff;
    padding: 8px !important;
    border-radius: 0px 16px 0px 8px;
    top: 0;
    right: 0;
  }
}

/* Responsive design */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    /* margin: 0 10px; */
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 16px;
  }

  .menu-container .navbar-menu .menu-item a {
    font-size: 12px !important;
  }

  .menu-container .custom-nav {
    width: 80px !important;
  }
}


.existing-chat-container {
  height: calc(100vh - 100px) !important
}


/*toast styles*/

.error-toast {
  border: 1px solid #F4B0A1;
  background: #FFFAF9;
  box-shadow: 0px 4px 16px 0px rgba(16, 11, 39, 0.08);
  border-radius: 12px;
  display: flex;
  width: 404px;
  height: 103px;
  padding: 20px;
  /* justify-content: center;
  align-items: center; */
  gap: 10px;
  position: absolute;
  top: 20px;
  right: 28%;

  .toast-content {
    margin-left: 16px;

    p {
      margin: 0px !important;
    }
  }

  .close-btn {
    display: flex;
    align-self: self-start;
  }
}

.mb-4 {
  margin-bottom: 4px;
}

.bxt-dropdown-menu {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  background-color: #FFFFFF !important;
  padding: 2px !important;
  border-radius: 6px !important;
  top: 34px !important;
  right: 4px !important;
  z-index: 10;

  ul {
    list-style-type: none !important;
    padding: 0px;
  }

  .bxt-list-group-item {
    button {
      width: 100% !important;
      padding: 8px 10px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: start !important;

      img {
        width: 12px !important;
        margin-right: 5px !important;
      }
    }
  }

  .bxt-list-group-item:hover {
    button {
      background-color: #F0F1FF !important;
      border-radius: 5px !important;
    }
  }
}

::placeholder {
  color: #A1A1A1;
}


.custom-nav {
  margin-bottom: 12px;
  margin-left: -29%;
  border: none;
  width: 100px;
}

.sidebar {
  min-width: 280px;
  transition: width 0.3s;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.sidebar {
  width: 20%;
  background-color: #F9F8FF;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 6px 8px #a0a3f330;
  position: relative;
}

.sidebar.collapsed {
  width: 60px;
  min-width: 60px;
}

.sidebar-top,
.sidebar-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Icon-only circular + button */
.new-chat-btn-icon-only {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  margin: 16px auto;
  padding: 0;
}

.new-chat-btn span.hide {
  margin-left: 8px;
}

/* Sidebar header and chats always at the top of content area */
.sidebar-content .sidebar-header {
  margin-bottom: 10px;
}

.recent-chats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* Chat list spacing */
.chat-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Remove default margin from all elements as needed for compact look */
.sidebar .sidebar-header,
.sidebar .recent-chats {
  margin: 0;
  padding: 0 16px;
}

.sidebar .recent-chats-header {
  margin-top: 1rem;
}

/* Optionally, hide .sidebar-header if you want headerless sidebar */
.icon-position {
  margin-top: 46px !important;
  margin-left: -9px !important;
}

.tag.selected {
  outline: 2px solid #007bff;
  /* or background: #e6f2ff; */
}

.microsoft-card-modal {
  width: 464px;
  max-height: 600px;
  overflow: auto;
  padding: 14px;
  position: relative;

  .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background-color: #fff;
    padding: 8px !important;
    border-radius: 0px 16px 0px 8px;
    top: 0;
    right: 0;
  }

  .modal-body {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    padding: 16px 16px !important;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;

    .card-header {
      font-family: 'interBold';
      background-color: #F4F3F5;
      border-radius: 0px 0px 10px 10px;
      display: flex;
      padding: 10px 20px;
      position: absolute;
      top: 0;
    }

    .card-title {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 2px solid #fff;
      margin-top: 46px;
      position: relative;

      p {
        font-family: 'interMedium';
        font-size: 30px;
        color: #fff;
        text-align: center;
        margin-bottom: 0px;
      }

      .bg-img {
        position: absolute;
        width: 70px;
        left: 0px;
      }
    }

    .card-content {
      margin-top: 24px;

      label {
        display: inline-block;
        font-family: 'interSemibold';
        color: #fff;
        font-size: 14px;
        margin-bottom: 6px;
      }

      p {
        font-family: 'interRegular';
        font-size: 14px;
        color: #f0f0f0;
        line-height: 24px;
        margin-bottom: 8px;
      }
    }

    .card-footer {
      width: 100%;
      display: flex !important;
      align-items: center;
      margin-top: auto;
      padding: 24px 0px 0px 0px;
      border-top: 2px solid #fff;
      flex-wrap: wrap;
      gap: 10px;

      .pill-label {
        text-wrap: nowrap;
        font-family: 'interRegular';
        font-size: 11px;
        color: #f0f0f0;
        display: flex !important;
        padding: 4px 10px;
        border-radius: 6px;
      }
    }
  }

  /* template specific styles */
  .info-management {
    background: linear-gradient(161deg, #0176D1 4.32%, #0E66B1 48.13%, #174575 91.95%);

    .card-header {
      color: #1F5188;
    }

    .pill-label {
      border: 1.5px solid #0091FF;
    }
  }

  .data-analytics {
    background: linear-gradient(161deg, #21595F 4.32%, #173D42 48.13%, #0F292D 91.95%);

    .card-header {
      color: #112D31;
    }

    .pill-label {
      border: 1.5px solid #2C757E;
    }
  }

  .task-automation {
    background: linear-gradient(161deg, #433F40 4.32%, #343131 48.13%, #1D1C1B 91.95%);

    .card-header {
      color: #222120;
    }

    .pill-label {
      border: 1.5px solid #70696B;
    }
  }

  .decision-making {
    background: linear-gradient(161deg, #594536 4.32%, #413228 48.13%, #281E18 91.95%);

    .card-header {
      color: #2E231C;
    }

    .pill-label {
      border: 1.5px solid #725846;
    }
  }

  .visual-perception {
    background: linear-gradient(161deg, #443465 4.32%, #302548 48.13%, #201A31 91.95%);

    .card-header {
      color: #231B34;
    }

    .pill-label {
      border: 1.5px solid #513E79;
    }
  }

  .text-processing {
    background: linear-gradient(161deg, #6D361B 4.32%, #4A2512 48.13%, #33190C 91.95%);

    .card-header {
      color: #010101;
    }

    .pill-label {
      border: 1.5px solid #BE5F2F;
    }
  }

  .communication {
    background: linear-gradient(161deg, #6F252D 4.32%, #4D1A1F 48.13%, #331115 91.95%);

    .card-header {
      color: #391317;
    }

    .pill-label {
      border: 1.5px solid #BA3E4D;
    }
  }

  .speech-recognition {
    background: linear-gradient(161deg, #6D2470 4.32%, #4E1A50 48.13%, #331034 91.95%);

    .card-header {
      color: #3B163C;
    }

    .pill-label {
      border: 1.5px solid #963299;
    }
  }

  .environmental-awareness {
    background: linear-gradient(161deg, #07621C 4.32%, #044313 48.13%, #022C0C 91.95%);

    .card-header {
      color: #03320E;
    }

    .pill-label {
      border: 1.5px solid #087F24;
    }
  }

  .content-creation {
    background: linear-gradient(161deg, #825EBF 4.32%, #61478F 48.13%, #4A376D 91.95%);

    .card-header {
      color: #56407F;
    }

    .pill-label {
      border: 1.5px solid #987EC7;
    }
  }

  .process-optimization {
    background: linear-gradient(161deg, #29426C 4.32%, #1D304D 48.13%, #121E31 91.95%);

    .card-header {
      color: #152237;
    }

    .pill-label {
      border: 1.5px solid #36578E;
    }
  }

  .navigation-control {
    background: linear-gradient(161deg, #7B5819 4.32%, #523B11 48.13%, #36270B 91.95%);

    .card-header {
      color: #3F2D0D;
    }

    .pill-label {
      border: 1.5px solid #7F5A1A;
    }
  }
}

.btn-outline-primary {
  background-color: transparent;
  color: #494da9;
  border: 1px solid #494da9;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.btn-outline-primary:hover {
  background-color: #494da9;
  color: #fff;
}

.file-container {
  background-color: #F3F4F6;
  border-radius: 8px;
  padding: 8px;
}

.feature-text {
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.popup {
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  left: 0;
  z-index: 9999;
  background-color: #00000066;
  position: fixed;
  display: flex;
  top: 0;
}

.option-card.disabled {
  opacity: 0.5;
  pointer-events: none;
  /* disables all mouse events */
  /* Optionally, add grayscale or other visual cues */
  filter: grayscale(0.6);
}

button:focus {
  outline: 0px !important;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader {
  color: #FFF;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {

  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em
  }

  40% {
    box-shadow: 0 2.5em 0 0
  }
}

button:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.input-with-icon {
  position: relative;
  display: inline-block;
  width: 100%;
}

.form-input {
  width: 100%;
  /* padding-right: 2.5rem; */
  /* Space for the icon on the right */
  box-sizing: border-box;
}

.calendar-icon {
  position: absolute;
  right: 0.75rem;
  /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  /* Adjust icon size */
  height: 1.2rem;
  pointer-events: auto;
  cursor: pointer;
  /* So the icon doesn’t block input clicks */
}

#spSiteHeader,
#spCommandBar {
  display: none !important;
}

.budgetry-error-toast {
  border: 1px solid #a19d9c;
  background: #ffffff;
  box-shadow: 0px 4px 16px 0px rgba(16, 11, 39, 0.08);
  border-radius: 12px;
  display: flex;
  height: 46px;
  padding: 20px;
  gap: 10px;
  position: absolute;
  right: 41%;
  top: 97px;
  width: 380px;

  .toast-content {
    margin-left: 16px;

    p {
      margin: 0px !important;
    }
  }

  .close-btn {
    display: flex;
    align-self: self-start;
  }
}

.trans-container {
  color: black !important;
}

.form-control-drop {
  appearance: none;
  /* Remove default styling */
  -webkit-appearance: none;
  /* Remove default styling for Safari */
  -moz-appearance: none;
  /* Remove default styling for Firefox */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><polygon points="0,0 10,0 5,5" fill="black"/></svg>');
  /* Down arrow */
  background-repeat: no-repeat;
  background-position: right 10px top 67%;
  /* Position the arrow */
  background-size: 10px;
  /* Size of the arrow */
  padding-right: 30px;
  /* Space for the arrow */
  background-color: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.selected {
  background-color: rgb(237, 237, 255) !important;
  /* Change this to your desired color */
}

.bxt-form-label {
  margin-bottom: 5px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #3D3D3D;
  font-family: 'Lato';
}

.category-selected-count {
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid #5b5fc7;
  border-radius: 20px;
  color: black;
  background-color: #eff6ff;
  display: inline-block;
  font-family: 'Lato';
  height: fit-content;
}

.open-in-new-tab {
  color: #0078d4;
  /* default link color */
  cursor: pointer;
  text-decoration: underline;
  outline: none;
}

.open-in-new-tab:hover,
.open-in-new-tab:focus {
  color: #005a9e;
  text-decoration: underline;
}

.responsive-image {
  width: 300px !important;
  /* Default width for larger screens */
}

.Custom-advanced-filter {
  display: flex;
  gap: 8px;
}

@media (max-width:767px) {

  .main-panel,
  .right-panel,
  .chat-bubble,
  .bot-response,
  .user-response,
  .form-check .advance-filter-panel,
  .form-input {
    width: 100% !important;
    max-width: 100% !important;
  }

  .advance-filter-panel {
    top: 100px !important;
    width: 250px !important;
  }

  #trial-banner {
    height: 10vh !Important;
  }

  .options {
    flex-direction: column;
    width: 100% !important;
  }

  .navbar-menu .menu-item a {
    padding: 8px 11px !important
  }

  .chat-header {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .chat-header.chat-title-header {
    flex-direction: unset !important;
  }

  .advance-filter-panel {

    .form-input,
    .form-select {
      width: 100%;
    }
  }

  .mobile-filter {
    flex-wrap: wrap !important;
    gap: 0px !important;
  }

  .dashboard-container {
    height: auto !important;
  }

  .list-item-mobile {
    width: 85% !important;
  }

  .send-icon {
    width: 80% !important;
  }

  .form-group {
    width: 100%;
  }

  .search-bar {
    width: 80% !important;
  }

  .search-bar input {
    width: 70% !important;
  }

  .option-card:first-child,
  .option-card:last-child {
    opacity: 0.5;
    pointer-events: none;
    /* disables all mouse events */
    /* Optionally, add grayscale or other visual cues */
    filter: grayscale(0.6);
  }

  .table-container {
    background-color: transparent;
    overflow: auto;
  }

  .budgetry-error-toast {
    right: auto;
    left: 50%;
    transform: translate(-50%, 10px);
    width: 80%;
  }

  .navbar-menu .menu-item:last-child .dropdown .dropdown-item:last-child {
    opacity: 0.5;
    pointer-events: none;
  }

  .responsive-image {
    width: 150px !important;
    /* Width for mobile view */
  }

  .chat-bubble .ac-container table.ac-factset tr {
    display: flex;
    flex-direction: column;
  }

  .chat-body,
  .chat-footer-container {
    padding: 30px 0px !important;
  }

  .chat-body {
    height: 62% !important;
  }

  ul.chat-list.slim-scroll {
    height: 350px;
    min-height: unset !important;
    overflow: auto;

    li.chat-item {
      position: relative !important;
    }
  }

  .Custom-advanced-filter {
    justify-content: space-between;

    select#Status {
      width: 125px !important;
    }
  }

  .custom-title-filter {
    flex-direction: column;
  }

  .right-panel {
    height: 90vh !important;
  }

  .show-button {
    display: block !important;
  }
}


span.custom-sort-aligment {
  display: flex;
  align-items: center;

  .table-sort .sort-up-position {
    left: 8px;
    position: absolute;
    top: -5px;
  }

  .table-sort .sort-down-position {
    bottom: -8px;
    left: 8px;
    position: absolute;
  }
}

#categories label {
  white-space: normal !important;
}

button[aria-label="Create SOW"] {
  display: none !important;
}

button[aria-label="Generate SOW"] {
  display: none !important;
}

/* ===== RESPONSIVE MENU CONTAINER ===== */
.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #fff;
  min-height: 60px;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Logo styles */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
  display: none;
  width: 100%;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hamburger-btn {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn img {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .navbar-menu {
  flex-direction: column;
  gap: 0;
}

.mobile-menu .menu-item {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .menu-item a {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 0;
}

/* ===== NAVBAR MENU ITEMS ===== */
.navbar-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-item {
  position: relative;
}

.menu-item a {
  color: #5B5FC7;
  font-size: 14px !important;
  padding: 8px 12px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.menu-item a:hover {
  background-color: #F0F1FF;
}

.menu-item a.selected {
  background-color: #F0F1FF;
}

.logout-link {
  color: #FF6270 !important;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets and smaller laptops */
@media screen and (max-width: 1024px) {
  .navbar-menu {
    gap: 4px;
  }

  .menu-item a {
    font-size: 14px !important;
    padding: 8px 10px;
  }

  .logo-img {
    height: 35px;
  }
}

/* Mobile landscape and tablets portrait */
@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .menu-container {
    padding: 8px 15px;
    min-height: 56px;
  }

  .logo-img {
    height: 32px;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  .menu-container {
    padding: 8px 12px;
    min-height: 50px;
  }

  .logo-img {
    height: 28px;
    max-width: 120px;
  }

  .hamburger-btn img {
    width: 36px;
    height: 30px;
  }

  .mobile-menu .menu-item a {
    font-size: 14px !important;
    padding: 10px 15px;
  }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
  .menu-container {
    padding: 6px 10px;
  }

  .logo-img {
    height: 24px;
    max-width: 100px;
  }

  .mobile-menu .menu-item a {
    font-size: 14px !important;
    padding: 8px 12px;
  }
}

.bxt-accordion-header + .bxt-accordion-body > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.pva-floating-style{
  display: none !important;
}