﻿.sidenav {
    height: 70%;
    width: 250px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    /* background-color: #111;*/
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 20px;
    /*border-right:1px solid #adb5bd;*/
}

    /* Style the sidenav links and the dropdown button */
    .sidenav a, .dropdown-btn, .dropdown-btn button {
        padding: 6px 8px 6px 16px;
        text-decoration: none;
        font-size: 15px;
        /*color: #818181;*/
        color: white;
        display: block;
        border: none;
        background-color:transparent !important ;
        /*background: #e9d4b4;*/
        /*background-color: var(--pxpMainColorDark);*/
        width: 100%;
        text-align: left;
        cursor: pointer;
        outline: none;
        margin-bottom: 2px;
    }

        /* On mouse-over */
        .sidenav a:hover, .dropdown-btn:hover {
            color: var(--pxpMainColorDark);
            background-color: transparent !important;
        }

/* Main content */
.main {
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
    /* background-color: #d3bfa0;*/
    background-color: #0969C3;
    color: var(--pxpMainColorDark);
}

/* 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: #e9d4b4;*/
    background-color: transparent !important; /* var(--pxpMainColorDark);*/
    padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            /*font-size: 18px;*/
        }
}

