/* utilities.css - estilos mínimos para Gopartrucks */
/* utilities.css - Clases rápidas */

/* Textos */
.text-center {
  text-align: center;
}
.text-muted {
  color: var(--muted);
}

/* Espaciados */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Flex */
.flex {
  display: flex;
  gap: 1rem;
}
.flex-center {
  justify-content: center;
  align-items: center;
}
