 /* The sidebar menu */
 .sidenav {
  /*height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 220px; /* Set the width of the sidebar */
  position: fixed; /*Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /*Stay on top*/
  left: 0;
  background-color: #111; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
  padding-bottom: 80px;
  padding-right: 16px;
  border-right:solid #a98c66 4px;
  overflow-y: scroll;
  min-width: 150px;
  position: fixed;
  height: 95%;
  float: left;
  background-color: #111;
  border-right:solid #a98c66 4px;
  top: 40px;
}
/* The navigation menu links */
/* And drop down button */
.sidenav a, .dropdown-btn, .dropbtn, .accordion {
    padding: 8px 6px 0px 16px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width:100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    overflow-y: auto;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .dropdown-btn:hover {
    /* color: #f1f1f1; */
    background-color: #ddd;
    color: black;
}
.sidenav {
  padding: 8px 6px 0px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  overflow-y: auto;
}
/* Style page content */
.main {
    /* margin-left: 220px; Same as the width of the sidebar */
    margin-left: 220px; /* Same as the width of the sidebar */
    padding: 60px 40px;
}
body{
  margin: 0px;
  padding: 0px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

/* Class for fitting larger images to screen width */
.img-fit {
    max-width: 100%;
    height: auto;
}

/* 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;
  }

  /* Drop down box */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  .dropbtn {
    color: black;
    padding: 6px 8px 6px 0px;
  }
  .dropdown {
    cursor: pointer;
    border: black;
    outline: none;
    color: black;
    padding: 20px 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 10px;
    display: block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
.header {
  font-weight: bold;
}
.panel {
  display: none;
  overflow: hidden;
}
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

/* Winner illustration box for drafts, should "match" pic colours */
.winner_box{
  border: 5px solid #ee82ee;
}

.topnav {
  background-color: #333;
  /* overflow: hidden; */
  left: 0;
  height: 36px;
  padding-left: 0;
  width: 100%;
  text-align:right;
  padding-right:0px;
  padding-top:0px;
  margin-left: 0px;
  position: fixed;
  top: 0px;
  background-color: #111;
  border-bottom:solid #a98c66 4px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #818181;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  font-size: 25px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.highlight:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Table Style */
table {
  border-collapse: collapse;
}