/* Product Classifications Module Styles */

#product-classifications-module .table th,
#product-classifications-module .table td {
  vertical-align: middle;
}

#product-classifications-module .action-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

#product-classifications-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;
}

#product-classifications-module .action-buttons i.bi-pencil {
  background-color: #17a2b8;
  color: white;
}

#product-classifications-module .action-buttons i.bi-pencil:hover {
  background-color: #138496;
  transform: translateY(-2px);
}

#product-classifications-module .action-buttons i.bi-trash {
  background-color: #dc3545;
  color: white;
}

#product-classifications-module .action-buttons i.bi-trash:hover {
  background-color: #c82333;
  transform: translateY(-2px);
}

#product-classifications-module .search-bar .input-group-text {
  border-right: none;
}

#product-classifications-module .search-bar .form-control {
  border-left: none;
}

#product-classifications-module .table-responsive {
  max-height: calc(100vh - 300px);
}

#product-classifications-module .pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #product-classifications-module .table-responsive {
    max-height: none;
  }
  
  #product-classifications-module .card-header .row > div:first-child {
    margin-bottom: 1rem;
  }
}