/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

/*body {
    margin-bottom: 60px;
}

body {
    font-family: "Lato", sans-serif;
}
*/


/* Fixed sidenav, full height */
.sidenav {
    height: 70.5%;
    width: 18%;
    position: fixed;
    z-index: 1;

 
top: 8.5%;
left: 0;
    background-color: orange;
    overflow-x: hidden;
    padding-top: 40px;
}
    /* test*/


    /* Style the sidenav links and the dropdown button */
    .sidenav a, .dropdown-btn {
        padding: 6px 8px 6px 16px;
        text-decoration: none;
        font-size: 17px;
        color: #818181;
        display: block;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        outline: none;
    }


    /* Style the sidenav links and the dropdown button */
.dropdown-btnWithoutpadding-left {
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    font-size: 16px;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

        /* On mouse-over */
        .sidenav a:hover, .dropdown-btn:hover {
            color: white;
        }


    /* On mouse2-over try */
    .sidenav a2:hover {
        color: grey;
    }


/* Main content */
.main {
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
    flex: 1;
}

/* Add an active class to the active dropdown button */
.active {
    background-color: green;
    color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
   
}




/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
    caret-shape: auto;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}
/*navigation bar selected menuitem turns white*/
.selected {
    background-color: white; /* Change this to the desired color */
    color: black; /* Change this to the desired color */
}

    .selected a {
        color: green; /* Change this to the desired color */
    }

/* Style the tab */
.tab {

   

    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    /* Style the buttons inside the tab */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #ccc;
        }
/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}


.link-button {
    background: none;
    border: none;
    color: #1a0dab;
    text-decoration: underline;
    cursor: pointer;


}
/*.clicked-link {
    color: red;*/ /*Example: Visited link color */
/*}*/
.btn-primary {
    background-color: green !important;
    border-color: green !important; /* Also change border color for consistency */
}

/*sticky footer*/



html, body {
    margin: 0;
}

/*html, body {
    height: 100%;
    margin: 0;
}*/

/*body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}*/

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full viewport height */
}

.content {
    flex: 1; /*takes remaining space so footer is pushed down */
    padding-bottom: 160px; /* Adjust based on footer height */
}

.footer {
    background-color: #222;
    color: orange;
    text-align: center;
    padding: 1em;
    height: 160px;  Set footer height 
    /*height: 20%;*/ /* Set footer height */
}

/*footer {
    background: #f1f1f1;
    padding: 20px;
}*/



    /*sticky footer*/

/*table.table th {
    text-align: center;
    vertical-align: middle;
}*/

/*add vertical lines between columns input thead table
*/table.table th,
table.table td {
    border-left: 1px solid #ccc; /* vertical line on the left */
    border-right: 1px solid #ccc; /* vertical line on the right */
}

/* remove double border on the outer sides */
table.table {
    border-collapse: collapse;
}

/*change the background of the headings to light gray in tables
*/

/*th {
    background-color: lightgray;*/ /* Or use hex code like #D3D3D3 */
/*}*/



table.table th {
    background-color: lightgray; /* Or use hex code like #D3D3D3 */
}



/*.sticky-page-header th {
    position: sticky;
    top: 0;
    background-color: white;*/ /* so it does not overlap text */
    /*z-index: 50;*/ /* above scroll content */
    /*border-bottom: 2px solid #ccc;
}*/

/* Optional: ensure the header is above Bootstrap striped rows */
/*table.table {
    border-collapse: separate;
}*/
/*.sidenav {
    height: calc(100vh - 60px);
}  */

/*@media (max-width: 768px) {
    .sidenav {
        position: static;*/ /* stops overlap */
        /*width: 100%;*/ /* full width */
        /*height: auto;*/ /* let content define height */
        /*top: auto;
        left: auto;
        padding-top: 10px;
        z-index: auto;
    }
}*/
/*        don't show footer on smartphones
*/
/*@media (max-width: 768px) {
    .footer {
        display: none;
    }
}*/

@media (max-width: 991.98px) {
    footer.footer {
        display: none !important;
    }
}

/*for setting small page margins
*/
/*.page-container {
    margin: 0.5cm;
}*/

/*style the social Icons input footer
*/
.social-link {
    font-size: 1.4rem;

    color: #6c757d;
    text-decoration: none;
}

    .social-link:hover {
        color: #0d6efd; /* Bootstrap primary */
    }