﻿body {
}

#customerlist > tr {
	cursor: pointer;
}

#login {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 10px;
    margin-right: 10px;
}

#toggle-container {
    margin-bottom: 15px;
}

#customerlist {
    max-height: calc(100vh - 245px);
    overflow-y: auto; /* Trigger vertical scroll    */
    overflow-x: hidden; /* Hide the horizontal scroll */
}

tr a{
    color:black;
}
.dark-edition a{
    color:black;
}

#tbody-functions {
    max-height: calc(100vh - 360px);
    overflow-y: auto; /* Trigger vertical scroll    */
    overflow-x: hidden; /* Hide the horizontal scroll */
}

.content {
    padding: 20px;
}

thead, tbody {
    display: block;
}

#functionform > .form-group {
    margin-bottom: 17px;
}

.form-control {
    color: #949494 !important;
}

.tableBodyScroll tbody {
    display: block;
    max-height: calc(100vh - 360px);
    overflow-y: scroll;
}

.tableBodyScroll thead,
tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}