/* FLEXI PAGOS - OVERRIDE GLOBAL DE COLORES */

/* Botones primarios */
.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary,
.btn.btn-primary {
    background: #023373 !important;
    border: 1px solid #023373 !important;
    color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #f28908 !important;
    border-color: #f28908 !important;
    color: white !important;
}

/* Clases de Tailwind */
.bg-blue-500 { background-color: #023373 !important; }
.bg-blue-600 { background-color: #023373 !important; }
.text-blue-500 { color: #023373 !important; }
.text-blue-600 { color: #023373 !important; }
.border-blue-500 { border-color: #023373 !important; }

/* Variables CSS override */
:root {
    --bs-primary: #023373 !important;
    --bs-primary-rgb: 2, 51, 115 !important;
}


