.pagado td{
    background-color: green !important;
    color: white !important;
}

.pendiente td{
    background-color: gold !important;
    color: black !important;
}

.vencido td{
    background-color: red !important;
    color: white !important;
}

.autocomplete-suggestions {
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
}
 
    .autocomplete-suggestions>:nth-child(odd) {
        background-color: silver;
    }
 .autocomplete-suggestions>div:hover{
    background-color: yellow;
 cursor: pointer;
 }

 .autocomplete-selected{
    background-color: yellow !important;
 
 }
 #letras{
    max-height: 30vh;
    min-height: 20vh;
    overflow-y: scroll;
 }
 #stickHead{
    position: sticky;
    top: 0;
    background: #f1f1f1; /* Background color to differentiate header */
    z-index: 1; /* Ensure the header is above the table rows */
 }