/* Style the sidebar - fixed full height */
.sidebar {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 53px; /* 45px; */
  left: 6px;
  background-color: #000000; /* #333; */
  overflow-x: hidden;
  overflow: hidden;
  padding-top: 10px;
}

/* Style sidebar links */
.sidebar a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-style: normal;
  font-size: 16px;
  font-weight: 200;
  font-family: 'Poppins', 'Open Sans', sans-serif;
  color: white; /* #818181; */
  display: block;
}

/* Create a right-aligned (split) link inside the navigation bar */
.sidebar a.split {
  background-color: #04AA6D;
  color: white;
}

/* Style links on mouse-over */
.sidebar a:hover {
  font-weight: 500;
}

/* Style the main content */
/* .main {
/*  margin-top: 45px; /* Add a top margin to avoid content overlay */
/*  margin-left: 200px; /* Same as the width of the sidenav */
/*  padding: 10px 10px;
  font-family: 'Open Sans';
  font-size: 22px;
}

/* Add an active class to the active dropdown button */
/*.active {
  background-color: green;
  color: white;
}

/* Style the sidenav links and the dropdown button */
/*.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  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: #f1f1f1;
}


/* 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;
}

/* Create a alert bar with a red background color  */
.alert {
  position: fixed; /* Set the navbar to fixed position */
/*  top: 2px; /* Position the navbar at the top of the page */
/*  left: 6px; */
  width: 100%; /* Full width */
  background-color: #ff0000; /* #333; */
  color: #f2f2f2;
  text-align: center;
  overflow: hidden;
}

/* Create a top navigation bar with a black background color  */
.topnav {
  position: fixed; /* Set the navbar to fixed position */
  top: 0px; /* Position the navbar at the top of the page*/
  left: 6px; /* leaves a small white magin on left to show split of menu */
  height: 53px; /* 48px; */
  width: 100%; /* Full width */
  background-color: #000000; /* #333; */
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px; 
  text-decoration: none; 
  font-style: normal;
  font-size: 17px;
  font-weight: 300;
  font-family: 'Poppins', 'Open Sans', sans-serif;
}

/* Style links on mouse-over */
.topnav a:hover {
  font-weight: 500;
}

/* Change the color of links on hover 
.topnav a:hover {
  background-color: #ddd;
  color: black;
}
*/

/* Create a right-aligned (split) link inside the navigation bar */
.topnav a.split {
  float: right;
  background-color: #04AA6D;
  color: white;
}

/* Add media queries for small screens (when the height of the screen is less than 450px, add a smaller padding and font-size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}