/**
 * Placeholder thickness minimized
 * */
.form-control::placeholder {
  color: rgba(168, 170, 173, 0.75);
  opacity: 1;
}
/**
 * Change Group Button size - (Right Side Buttons)
 * */
 .cc-group-btn-size{
  padding: .375rem .15rem;
 }

 /**
  * Print page minimum width
 */
 .min-width-600{
  min-width: 600px;
 }

 /**
 * Autocomplete css
 * */
 .ui-autocomplete {
  max-height: 160px;
  overflow-y: auto;
  overflow-x: hidden; /* prevent horizontal scrollbar */
}

/**
 * Autocomplete Loader for input box
 * */
.ui-autocomplete-loading {
  background: white url("autocomplete-loader/ui-anim_basic_16x16.gif") right center no-repeat;
}

/**
 * Cursor not allowed
 * */
 .cursor-not-allowed{
  cursor:not-allowed;
 }

 /**
  * Input box border color change to primary class color
  * */
.custom-border-primary {
    border-color: #007bff !important; /* Replace with your desired color */
}

/**
 * Page Loader , Spinner
 * */
 #spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#spinner-content {
    text-align: center;
}
#loading-message {
    color: white;
    margin-top: 15px;
    font-size: 18px;
}

/**
 * Highlight last added table row
 * */
tr.highlight {
  animation: popIn 0.5s ease-out;
}
@keyframes popIn {
  0% {
    transform: scale(1.05);
    background-color: rgb(0 140 255 / 5%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  100% {
    transform: scale(1);
    background-color: rgb(0 140 255 / 5%);
    box-shadow: none;
  }
}

/**
* no code 
* */
.text-transform-none{
text-transform: none;
}

/**
* input group input box, in one group i need to show some of the select or 
* input box 30 %
* */
.cu-flex-30{
  flex: 0 0 30% !important;
}

.cu-w-500-px{
  width: 500px !important;
}

/**
 * POS Page Items Selected Table Resize
 * */
 .resizable-vertical {
  resize: vertical;
  overflow: auto; /* Required for the resize property to work */
  min-height: 270px; 
}

/**
 * No Padding for invoice tables
 * */
 #invoiceItemsTable input.form-control {
    padding-left: 0rem;
    padding-right: 0rem;
    font-size: 18px;
}

/* Fixed table layout for invoice items table */
#invoiceItemsTable {
   table-layout: fixed;
}

/* Fixed column widths to prevent overlap */
.col-action { width: 60px; min-width: 60px; }
.col-item { width: 200px; min-width: 200px; }
.col-serial { width: 80px; min-width: 80px; }
.col-batch { width: 100px; min-width: 100px; }
.col-mfg { width: 100px; min-width: 100px; }
.col-exp { width: 100px; min-width: 100px; }
.col-model { width: 100px; min-width: 100px; }
.col-mrp { width: 80px; min-width: 80px; }
.col-color { width: 80px; min-width: 80px; }
.col-size { width: 80px; min-width: 80px; }
.col-subproduct { width: 120px; min-width: 120px; }
.col-dimensions { width: 150px; min-width: 150px; }
.col-qty { width: 100px; min-width: 100px; }
.col-unit { width: 120px; min-width: 120px; }
.col-price { width: 150px; min-width: 150px; }
.col-calculated { width: 150px; min-width: 150px; }
.col-discount { width: 150px; min-width: 150px; }
.col-tax { width: 150px; min-width: 150px; }
.col-total { width: 120px; min-width: 120px; }

/* Ensure inputs have adequate padding and width */
#invoiceItemsTable input,
#invoiceItemsTable select {
    padding: 4px 8px;
    box-sizing: border-box;
    min-width: 50px;
}

/* Specific styling for Panneau MDF dimensions input group */
.panneau-mdf-dimensions .input-group {
    max-width: 100%;
    display: flex;
    align-items: center;
}

.panneau-mdf-dimensions .form-control {
    flex: 1;
    min-width: 40px;
}

.panneau-mdf-dimensions .input-group-text {
    flex-shrink: 0;
    padding: 4px 6px;
}