.no-dividers td:not(:first-child) {
  text-align: right !important;
}
.no-dividers th:not(:first-child) {
  text-align: center !important;
}
.no-dividers table,
.no-dividers tbody,
.no-dividers tr,
.no-dividers th:not(.text-input-cell),
.no-dividers td:not(.text-input-cell) {
  border: none !important;
}
.no-dividers .text-input-cell input {
  text-align: right !important;
}

.edit-modal .checkbox-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}
.edit-modal .formula-text {
  margin-top: 4px;
  font-size: 11px;
  color: #666;
  text-align: left;
}.whole-sale-table-component {
  overflow: auto; /* Enables scrolling */
  max-height: 400px; /* Optional: sets a scrollable height */
  
  /* Firefox scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: #888 #f0f0f0;
}

/* WebKit scrollbar styling */
.whole-sale-table-component::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.whole-sale-table-component::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.whole-sale-table-component::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.whole-sale-table-component::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.date-selection, .dropdown{
    min-width: 200px !important;
}