html, body {
    height: 100%;
}

.main {
    height: calc(100% - 50px);
    background-color: #4d4464;
}

.navbar {
    background-color: #798b91;
    color: #fff;
    height: 50px;
    padding: 5px 15px;
}

.navbar-brand {
    text-transform: uppercase;
    color: #fff;
}

.navbar-brand:hover {
    color: #fff;
}

#sidebar {
    width: 35%;
    min-width: 340px;
    background-color: #615a76;
    margin: 10px;
    padding: 8px 10px;
    color: #fff;
}

#list {
    width: 100%;
    margin: 10px;
}

#list h3 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
}

#list table {
    width: 100%;
}

#list table tr {
    cursor: pointer;
}

#list table tr:hover td {
    background-color: #ccc;
}

#list table thead {
    background-color: #4d4464;
    color: #fff;
}

#list table td {
    background-color: #fff;
    border: 1px solid #333;
}

#list table td,
#list table th {
    padding: 4px 7px;
}

#apply-filter, #login {
    background-color: #798b91;
    color: #fff;
    width: 100%;
}

.table-container {
    overflow-y: auto;
    overflow-x: hidden;
}

#error {
    display: none;
    position: fixed;
    width: 60%;
    top:0;
    left: 50%;
    margin-left: -30%;
}

#menu {
    display: none;
    position: absolute;
    top:0;
    left: 0;
    width: 120px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #ccc;
}

#menu ul {
    margin: 0;
    padding: 0;
}

#menu ul li {
    list-style: none;
    display: block;
    padding: 3px 5px;
    cursor: pointer;
}

#menu ul li:hover {
    color: #fff;
    background-color: #0000ff;
}

.no-data {
    margin-top: 10px;
    text-align: center;
    color: #fff;
    display: none;
}