.amount-bg{
    background-color: rgb(240, 239, 238);
}

 /* Style for the selected row */
 .selected {
    background-color: #d1e7fd; /* Light blue background */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Hover effect for rows */


/* Optional: Styling for the search input */
#customerSearch {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.product-search-container {
    position: relative;
  }
  #productList {
    display: none; /* Initially hide the list */
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
    padding: 0;
    list-style-type: none;
  }
  #productList li {
    padding: 8px;
    cursor: pointer;
  }
  #productList li:hover {
    background-color: #f0f0f0;
  }
  .product-search {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
  }

/* ################ */
#sidebar {
  position: fixed;
  overflow-y: auto;
  height: 600px;
  padding-bottom: 100px !important;
}