/* /assets/css/utility.css */
/* =================================================================
   CLASES DE UTILIDAD GENERALES
   Implementado por: Juan Alberto
   ================================================================= */

/* --- Display --- */
.d-inline {
    display: inline !important;
}

/* --- Visibilidad --- */
.is-hidden {
    display: none !important;
}

/* --- Alineación de Texto --- */
.text-center {
    text-align: center !important;
}

/* --- Ancho --- */
.w-100 {
    width: 100% !important;
}

/* --- Márgenes --- */
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

/* --- Relleno --- */
.p-4 { padding: 2rem !important; }
.pt-4 { padding-top: 2rem !important; }

/* --- Flexbox --- */
.d-flex {
    display: flex !important;
}

.gap-2 {
    gap: 1rem !important;
}
.flex-grow-1 {
    flex-grow: 1 !important;
}


/* --- Específicos --- */
.form-inline {
    display: inline;
}

.btn-block {
    width: 100%;
}

.grid-full-width {
    grid-column: 1 / -1;
}