﻿body {
    font: 400 15px/1.8 Lato, sans-serif;
    color: #777;
}
/* Set the height of the sidebar to 100% of the viewport height */
#sidebar {
    height: 100vh;
    width: 15%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    overflow-x: hidden;
    background-color: black;
    padding-top: 10px;
}

/* Set the width and position of the content div */
#content {
    padding: 10px;
    background-color: #f2f2f2;
    overflow-y: scroll;
}

    /* Hide the scrollbar */
    #content::-webkit-scrollbar {
        display: none;
    }

.nav_menu {
    color: white;
}
    .nav_menu a {
        color: white !important; /* Force the text color to white */
        text-decoration: none; /* Remove underline */
    }

        .nav_menu a:visited {
            color: white !important; /* Ensure visited links are white */
        }

        .nav_menu a:hover {
            color: lightgray; /* Optional: Change color on hover */
        }

        .nav_menu a:active {
            color: white !important; /* Ensure active links are white */
        }

#wrapper {
    width: 85%;
    margin-left: 15%;
    height: 100%;
    overflow-y: auto;
    background-color: #f2f2f2;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.search_container {
    background-color: white;
    overflow-y: auto;
    padding: 20px;
    width: 100%;
}

.headings {
    color: darkgrey;
}

.borders {
    display: inline-flex;
    border-style: none;
}

.margin_dropdown {
    padding-right: 20px;
    padding-left: 20px;
    align-items: stretch;
    border: 0.1px solid #D3D3D3;
    margin-bottom: 0px;
}

.label_search {
    background-color: #eeeeee;
}

.txtbox:hover {
    border-color: blue;
}

.txtbox:focus {
    border: 0.1px solid blue;
}

.custom_btn {
    background-color: #3073ad;
    color: white;
}

.table {
    border: none;
    color: black;
    overflow: hidden;
}

    .table th {
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: none;
        color: black;
        font-weight: bold;
        border-style: none;
        padding: 5px;
    }

    .table td {
        padding: 5px;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 0.1px solid #ccc;
    }

.grid_left {
    margin-left: 15%;
}

.hiddencol_1 {
    display: none;
}

.highlighted-row-right {
    background-color: #69c941;
}

.highlighted-row-wrong {
    background-color: #f17878;
}

.tbody tr:hover.selected td,
.tbody tr:hover td {
    background-color: #FFEFC6;
    cursor: pointer;
}

.tbody tr.selected td {
    background-color: #ffd659;
}

.navbar {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #ccc;
}

    .navbar li {
        display: inline-block;
    }

        .navbar li a {
            display: block;
            text-decoration: none;
            padding-top: 10px;
            padding-bottom: 10px;
            color: #9dd0ea;
            border-top: 1px solid transparent;
            border-left: 1px solid transparent;
            border-right: 1px solid transparent;
            border-bottom: 1px solid transparent;
        }

            .navbar li a:hover,
            .navbar li a:focus,
            .navbar li a:active {
                color: lightgray;
                border-top: 1px solid #ccc;
                border-left: 1px solid #ccc;
                border-right: 1px solid #ccc;
                border-bottom: solid transparent;
            }

.navbar li.active{
    color: lightgray;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: solid transparent;
}
