body {
/*  font-family: "Lato", sans-serif; font je već definisan u horizontal menu i nećemo mijenjati */
}

/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 102px;
  left: 10px;
  background-color: #ffffff;
  overflow-x: hidden;
      line-height: 40px;
  padding: 0px 0px 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
  /* padding-top: 20px;  ne treba nam ovo */
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 0 20px; /*padding: 6px 8px 6px 16px; da bude isto kao na horizontal menu */
  text-decoration: none;
/*  color: #818181;
  border: none; promijenjeno*/
  font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;

      line-height: 40px;
  display: block;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  border: 2px solid var(--my_light_blue);
  border-radius: 20px;
  color: var(--my_orange);
  margin-bottom: 10px;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #000000;
  background-color: beige;
}

/* Add an active class to the active dropdown button */
.sidenav a.active {
  border: 2px solid var(--my_light_blue);
  background-color: var(--my_orange);
  color: black;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}


/* 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;
  line-height: inherit;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {
    padding: 0px 0px 0 20px;
      font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;}
  .sidenav a {font-size: 1.4rem;}
}