.custom-row {
  --bs-table-bg: orange !important;
  --bs-table-color: #2f2f2f;
  font-weight: bold;
  font-size: 16px;
}

@keyframes pulse-expand {
  0% {
    transform: scale(1); /* Original size */
  }
  50% {
    transform: scale(1.1); /* Expand to 110% */
  }
  100% {
    transform: scale(1); /* Return to original size */
  }
}


#btnEnviarPedido {
  animation: pulse-expand 2s infinite; /* Runs the pulse animation forever */
}