/* Fixed sidenav, full height */
.sidenav {
    z-index: 1;
    background-color: #ededed;
    overflow-x: hidden;
    padding: 0;
    border-bottom: solid 1px #dbd7d7;
}

/* Style the sidenav links and the dropdown button */
.sidenav a {
    font-family: "Arial";
    padding: 12px 8px 12px 16px;
    text-decoration: none;
    font-size: 14px;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}
.sidenav .dropdown-div a {
    font-weight: bold;
}
.sidenav .dropdown-container a {
    padding-left: 40px;
}

/* On mouse-over */
.sidenav a:hover, .fa-caret-right:hover, .fa-caret-down:hover {
    color: white;
}
.sidenav .dropdown-container a:hover, .dropdown-div:hover {
    background-color: #ed0678;
}

/* 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-drop {
    color: #ed0678;
}

/* 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: #ededed;
}

/* Some media queries for responsiveness */
/* @media screen and (max-height: 450px) {
    .sidenav a {font-size: 18px;}
} */

/*Bonus css*/
.dropdown-div {
    font-family: "Arial";
    text-decoration: none;
    font-size: 14px;
    color: #818181;
    display: flex;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    outline: none;
}

/* Optional: Style the caret down icon */
.fa-caret-down, .fa-caret-right{
    float: right;
    padding: 12px 18px;
}