/* Minimal custom CSS to complement Bootstrap */

/* Custom highlight color for key product features */
.text-success {
  color: #28a745 !important;
}

/* Add a slight hover effect to product images */
.img-fluid.rounded.shadow:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Make buttons slightly more prominent on hover */
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Ensure product table is easy to scan */
.table-responsive {
  max-width: 800px;
  margin: 0 auto;
}

/* Ensure modal images don't overflow */
.modal-body img {
  max-width: 100%;
}
