/* Override para botões brancos - alterar cor do texto para #153F59 */

/* Botões com bg-white e text-blue-700 */
.bg-white.text-blue-700 {
    color: #153F59 !important;
}

/* Botões com bg-white e text-blue-600 */
.bg-white.text-blue-600 {
    color: #153F59 !important;
}

/* Estados de hover para manter consistência */
.bg-white.text-blue-700:hover,
.bg-white.text-blue-600:hover {
    color: #153F59 !important;
}

/* Botões com bg-white e text-gray-700 */
.bg-white.text-gray-700 {
    color: #153F59 !important;
}

/* Botões com bg-white e text-gray-800 */
.bg-white.text-gray-800 {
    color: #153F59 !important;
}

/* Estados de hover para botões cinza */
.bg-white.text-gray-700:hover,
.bg-white.text-gray-800:hover {
    color: #153F59 !important;
}

/* Links e botões com fundo branco */
a.bg-white,
button.bg-white {
    color: #153F59 !important;
}

/* Estados de hover para links e botões */
a.bg-white:hover,
button.bg-white:hover {
    color: #153F59 !important;
}

/* Especificidade adicional para garantir que a cor seja aplicada */
.bg-white[class*="text-"] {
    color: #153F59 !important;
}

/* Para elementos com múltiplas classes de texto */
.bg-white.text-blue-700.hover\:bg-blue-50,
.bg-white.text-blue-600.hover\:bg-blue-50,
.bg-white.text-gray-700.hover\:bg-gray-50,
.bg-white.text-gray-800.hover\:bg-gray-100 {
    color: #153F59 !important;
}