tr.fixedheight {
    line-height: 25px;
    height: 25px;
}

.fixedheight td {
    max-width: 100px; /* Määra veeru maksimaalne laius */
    overflow: none;
    /*white-space: nowrap;
    text-overflow: ellipsis;*/
}

.nav-item-wrapper {
    position: relative;
}

.nav-item-wrapper .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: red;
}

/* Valikulised stiilid hoveri või fokuseerimise korral */
.nav-item-wrapper .nav-link:hover::before,
.nav-item-wrapper .nav-link:focus::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: red;
}
