/*
 * Centra los iconos de la button-group en vista móvil
 */
@media (max-width: 767.98px) {
  .button-group {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.15rem !important;
  }
  .button-group button {
    margin: 0 !important;
    padding: 0.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
