/* IN TABLE MENU */

.menu-div {
    height: calc(100vh - 300px) !important;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.menu-div::-webkit-scrollbar {
    width: 5px;
    border: none;
}

.menu-div::-webkit-scrollbar-track {
    background: var(--main-white);
    border-radius: 5px;
}

.menu-div::-webkit-scrollbar-thumb {
    background: var(--color-blue-light);
    border-radius: 5px;
}

.menu-div::-webkit-scrollbar-thumb:hover {
    background: var(--color-blue-dark);
}

.menu {
    width: 250px;
    border-spacing: 0px 10px;
}

.menu * {
    transition: all 0.2s ease-in-out;
}

.menu td {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
}

.menu th {
    text-align: left;
    padding-left: 10px;
    padding-top: 30px;
    opacity: 0.5;
}

.menu tr:hover {
    background-color: var(--menu-dark);
    cursor: pointer;
}

.menu tr.nonHoverable:hover {
    background-color: transparent !important;
    cursor: default;
}

.menu td:first-child {
    width: 20%;
}

.menu .tr-selected {
    background-color: var(--menu-dark);
}

.menu .tr-selected td:first-child {
    border-left: 2px solid white;
}

.menu img {
    height: 23px;
}


/* IN DIV MENU */

div.div-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: var(--menu-light);
    color: white;
}

div.vue {
    height: calc(100% - 120px);
    padding-left: 275px;
    padding-top: 120px;
    background-color: var(--main-back);
}

div.search-bar {
    position: fixed;
    top: 0;
    left: 250px;
    padding: 20px;
    padding-top: 0;
    width: calc(100% - 290px);
    height: 50px;
    background-color: var(--menu-dark);
    vertical-align: middle;
    color: white;
}