.btn {
    white-space: nowrap;
}

#contenedor-rutas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.link-plano {
    color: inherit; /* Toma el color del texto del contenedor padre */
    text-decoration: none; /* Quita el subrayado */
    cursor: pointer;
}

    .link-plano:hover {
        color: inherit; /* Evita que cambie de color al pasar el mouse */
        text-decoration: none; /* Evita que aparezca el subrayado */
    }