@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: monospace !important; */
  font-family: "Poppins";
  font-weight: 400;
  font-size: 14px;
}


#sidebar{
  z-index: 1535;
  overflow-y: auto;
  width:258px;
}

.sidebarfull{
  width: 100% !important;
}


.select2-selection.select2-selection--single[role="combobox"] {
  padding-top: 1.3rem !important;
  padding-bottom: 1.3rem  !important;
  display: flex  !important;
  flex-direction: row-reverse !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  border: 1px solid #d1d5db !important;
  border-radius: 0.375rem !important;
  box-shadow: var(0 0 #0000, 0 0 #0000), var(0 0 #0000, 0 0 #0000), var(0 1px 2px 0 rgba(0, 0, 0, 0.05))  !important;
}




.mobile-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #e2e2e2;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed; /* Make the header fixed */
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  z-index: 1000; /* Ensure it stays above other elements */
}

/* Hide on desktop screens */
@media (min-width: 1024px) { /* Adjust breakpoint as needed */
  .mobile-header {
      display: none; /* Ensure it doesn't appear on desktops */
  }
}

/* Button styling */
.menu-button {
  font-size: 20px;
  font-weight: bold;
  padding: 5px 10px;
  color: black;
  border-radius: 4px;
}

.bg-card{
  background-color: white !important;
}

#invoice-modal{
  z-index: 2040;
}

#modal{
  z-index: 2040;
}


#sidebar::-webkit-scrollbar {
  width: 7px;
  }

  /* Track */
  #sidebar::-webkit-scrollbar-track {
  background: #f1f1f1; 
  }

  /* Handle */
  #sidebar::-webkit-scrollbar-thumb {
  background: #888; 
  }

  /* Handle on hover */
  #sidebar::-webkit-scrollbar-thumb:hover {
  background: #555; 
  }