/* Price Management Module Styles */

#price-management-module .action-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

#price-management-module .action-buttons i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  color: white;
}

#price-management-module .action-buttons i.bi-pencil {
  background-color: #17a2b8;
}
#price-management-module .action-buttons i.bi-pencil:hover {
  background-color: #138496;
}

#price-management-module .action-buttons i.bi-trash {
  background-color: #dc3545;
}
#price-management-module .action-buttons i.bi-trash:hover {
  background-color: #c82333;
}

#price-management-module .action-buttons i.bi-clock-history {
    background-color: #6c757d;
}
#price-management-module .action-buttons i.bi-clock-history:hover {
    background-color: #5a6268;
}

#customer-price-table th, #customer-price-table td {
    vertical-align: middle;
    text-align: center;
}

#customer-price-table .form-control, #customer-price-table .form-select {
    min-width: 100px;
}

#customer-price-table th:nth-child(1),
#customer-price-table th:nth-child(2) {
    min-width: 180px;
}

.is-numeric {
    text-align: right;
}

/* Fix for modal overflow */
#priceManagementModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}
.custom-wide-modal {
    max-width: 98%;
}