.table-fixed {
    min-height: 220px;
    max-height: 220px;
    overflow-y: scroll;
}
a {
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
li.no-results {
    background-color: rgb(150, 44, 44)!important;
}

@keyframes rainbow {
    0% { color: red; }
    14% { color: orange; }
    28% { color: yellow; }
    42% { color: green; }
    57% { color: blue; }
    71% { color: indigo; }
    85% { color: violet; }
    100% { color: red; }
}

.rainbow-text {
    animation: rainbow 5s linear infinite; /* Adjust the duration as needed */
}