/* Topbar: evitar que botones se partan en 2 líneas y mejorar UX móvil */
.topbar-actions .btn,
.topbar-actions a.btn{
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* En pantallas chicas, que los botones distribuyan mejor el ancho */
@media (max-width: 576px){
  .topbar-actions .btn,
  .topbar-actions a.btn{
    flex: 1 1 auto;
  }
}
