

.form-control.no-border {
    border: none;
    box-shadow: none; /* Optional, to remove the box shadow */
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


#dropdown-container {
    background-color: white;
    position: absolute;
    z-index: 1500; /* Place the dropdown above the overlay */
}

.dropdown-list {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it's above other elements */
    overflow-y: auto; /* Enable vertical scrolling if needed */
}

#allitems {
    position: relative;
}

#stay {
    position: relative;
    display: block;
}

.stay {
    position: relative;
}

.stayhere {
    position: absolute;
}

#loginimg {
    position: relative;
  }

#loginimg::before {
content: "";
background: url(../image/bgimg.jpg) no-repeat center center;
position: absolute;
background-repeat: repeat-x;
width: 100%;
height: 120%;
opacity: 0.2;
z-index: -1;
}

@media print {
    #twoColumn{
      column-count: 2;
      -webkit-column-count: 2;
      -moz-column-count: 2;
    }
  }

.step{
  display: none;
}

div.scrollable {
  height: 550px; /* Set the desired height */
  overflow: auto; /* Add a scrollbar when content overflows the div's dimensions */
  /* You can also add more styles like border or padding if needed */
}

div.scrollableList {  /*only used in store list and item list on dashboard*/
  height: 450px; /* Set the desired height */
  overflow: auto; 
}

div.scrollableListUser {  /*only used in item list on user orderhistory*/
  height: 350px; /* Set the desired height */
  overflow: auto; 
}

div.scrollableMain {  /*only used in store list and item list on dashboard*/
  height: 98vh; /* Set the desired height */
  overflow: auto; 
}

div.suggestion {
  height: 100px; /* Set the desired height */
  width: 200px;
  overflow: auto; /* Add a scrollbar when content overflows the div's dimensions */
  /* You can also add more styles like border or padding if needed */
}

.table-container {
  max-height: 550px; /* Set the desired maximum height */
  overflow-y: auto; /* Enable vertical scrolling */
}

table {
    width: 100%;
}

th {
    position: sticky;
    top: 0;
    background-color: #f2f2f2;
    z-index: 2; /* Ensure the header is above the content */
}

th,
td {
    padding: 8px;
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 400;
}

.body-content{
  min-height: calc(85vh - 70px);
}

.ajs-content {
  padding: 0px;
  margin: 2;
}

.page-break {
  page-break-before: always;
}