/* Igualar el botón morado al negro */
.custom-outline-button.btn-ctp {
    background-color: #000000 !important; /* fondo negro */
    color: #ffffff !important;            /* texto blanco */
    border: none !important;              /* sin borde morado */
    border-radius: 4px !important;        /* borde rectangular como el negro */
    padding: 10px 20px !important;        /* padding similar */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;                            /* espacio entre icono y texto */
    height: 50px;                         /* ajusta según el botón negro */
    width: 100%;                          /* si quieres que sea como el negro de ancho completo */
    cursor: pointer;
    text-transform: none;                 /* evitar mayúsculas automáticas */
    font-size: 16px;                      /* tamaño de texto similar */
}

.custom-outline-button.btn-ctp img {
    height: 24px !important;              /* ajusta el tamaño del icono */
    width: auto;
}
