body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background-color: #f9f9fb;
  color: #222;
}

.component {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background-color: #f9f9fb;
  color: #222;
}



.nb-container {
  display: flex;
  flex-wrap: wrap;
  /* Allow items to wrap to the next line */
  gap: 10px;
  /* Space between items */
}

.item {
  flex: 1 1 calc(20% - 20px);
  /* 3 items per row with space between */
  padding: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  box-sizing: border-box;
  /* Include padding and border in the element's total width and height */
}

.form-control {
  font-size: 13px !important;
}

.form-check {
  font-size: 12px !important;
}



.form-label {
  font-weight: 500;
}

.field-fix-width {
  width: 220px !important;
}

.field-edit-modal {
  max-width: 600px !important;
  /* Set your custom width here */
}

.react-confirm-alert-overlay {
  z-index: 9999999 !important;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
  /*font-size: 1rem;*/
}

.custom-select select {
  appearance: none;
  /* Removes default arrow */
  padding-right: 40px;
  /* Space for custom arrow */
}

.custom-select ::after {
  content: '\25BE';
  /* Unicode for down arrow */
  position: absolute;
  top: 65%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.3rem;
  margin-top: 3px !important;
  color: grey;
}

.custom-select-inline {
  position: relative;
  display: inline-block;
  width: 100%;
  /*font-size: 1rem;*/
}

.custom-select-inline select {
  appearance: none;
  /* Removes default arrow */
  padding-right: 40px;
  /* Space for custom arrow */
}

.custom-select-inline ::after {
  content: '\25BE';
  /* Unicode for down arrow */
  position: absolute;
  top: 45%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.3rem;
  margin-top: 3px !important;
  color: grey;
}


/* src/App.css */
.editable-grid {
  margin: 20px;
}

.editable-grid table {
  width: 100%;
  margin-bottom: 20px;
}

.editable-grid button {
  margin-right: 10px;
}

/* src/App.css */
.sticky-header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1;
}

.table-container {
  height: 400px;
  overflow-y: auto;
  display: block;
}

.table-container table {
  width: 100%;
  table-layout: fixed;
}

.table-container tbody tr {
  height: 50px;
  /* Set row height */
}

.tab-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensures the container takes full height */
}

.nav-tabs {
  flex-shrink: 0;
}

.navBar {
  background: #460173;

}

.navBarBrand {
  font-weight: 600;
  font-size: 22px !important;
  color: white !important;
}

.tab-content {
  /*height: 1200px;*/
}

/* Ensures that all tabs have the same height */
.tab-pane {
  display: flex;
  flex-grow: 1;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.nb_card {
  border: 0 !important;
}

.nb_card-header {
  background-color: white !important;
}

.react-checkbox-tree {
  font-size: 12px !important;
}

@media (max-width: 768px) {
  .item {
    /*flex: 1 1 calc(50% - 20px);*/
    /* 2 items per row on smaller screens */
  }
}


.fullscreen-modal .modal-dialog {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.fullscreen-modal .modal-content {
  height: 100%;
  border-radius: 0;
  width: 1900px;
}

.modal-fullscreen {
  /* top: 55px !important;
  left: -10px !important;
  width: 100% !important;
  height: 90% !important; */
}



.modern-pill-tabs .nav-link {
  background-color: transparent;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  margin-right: 10px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.modern-pill-tabs .nav-link:hover {
  background-color: #f8f9fa;
  border-color: #0d6efd;
  color: #0d6efd;
}

.modern-pill-tabs .nav-link.active {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.tab-container1 {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
}


.chat-launcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #343a40;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1050;
  transition: background-color 0.3s ease;
}

.chat-launcher:hover {
  background-color: #212529;
}



/* fade.css */
.fade-enter {
  opacity: 0;
  transform: translateY(10px);
}
.fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease;
}
.fade-exit {
  opacity: 1;
}
.fade-exit-active {
  opacity: 0;
  transition: opacity 300ms ease;
}

.ag-theme-quartz .ag-cell.highlighted-column {
  background-color: #fff3cd !important; /* soft yellow */
  font-weight: bold;
}

.ag-theme-quartz .ag-header-cell.highlighted-column {
  background-color: #ffeeba !important;
}

.nav-bar-top{
  background-color: rgb(248, 249, 250) !important;
  border-left: 5px solid brown !important;
}


.custom-modal-spacing {
  margin-top: 60px !important; 
}


.custom-tab-nav .nav-link {
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ced4da;
  border-radius: 999px; /* pill shape */
  transition: all 0.25s ease;
  box-shadow: none;
  font-weight: 500;
}

.custom-tab-nav .nav-link:hover {
  background-color: #e9ecef;
  color: #0d6efd;
}

.custom-tab-nav .nav-link.active {
  background: linear-gradient(to right, #0d6efd, #0a58ca);
  color: white;
  border-color: #0a58ca;
  box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.3);
  font-weight: 600;
}

.custom-tab-nav .nav-link .badge {
  background-color: rgba(0, 0, 0, 0.15);
  transition: backgr


}

.custom-nav-tabs {
  padding: 6px 8px;
  background: #f4f6f8; /* light neutral row background */
  border-radius: 12px;
}

.custom-nav-tabs .nav-link {
  color: #444;
  background: transparent;
  border-radius: 25px;
  margin-right: 6px;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  padding: 8px 18px;
}

.custom-nav-tabs .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #007bff, #0056b3);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.custom-nav-tabs .nav-link:hover {
  background: rgba(0, 123, 255, 0.08);
  color: #007bff;
  transform: translateY(-1px);
}


.n_card{
  background-color: "#f9fafb" !important;    
  border: "1px solid #d1d5db" !important;
  border-radius: "10px" !important;
  box-shadow: "0 1px 3px rgba(0,0,0,0.08)" !important;
}