/* Sobrescribir el fondo */
.bg-blue-600 {
    background-color: #ffc72c !important; 
    /* El !important asegura que este color gane al original de Tailwind */
}

/* Sobrescribir el borde */
.border-blue-600 {
    border-color: #ffc72c !important;
}

/* Opcional: Si quieres cambiar también el color del texto cuando usas text-blue-600 */
.text-blue-600 {
    color: #F59E0B !important;
}

.bg-mi-amarillo {
    background-color: #F59E0B;
}