/* Style the navbar */
#navbar {
  overflow: hidden;
  background-color: #333;
}

/* Navbar links - PCversion */

    #navbar a {
  float:left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  padding-left: 64px;
  text-decoration: none;
		
}

/* your mobile css version */
@media (max-width: 700px) { 
    #navbar a {
  float:left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 4px;
  text-decoration: none;
		
}

}

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/*Avinash Bakshi*/

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}

/* Dropdown Button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}

/* center align image */

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}




/* Border Spacing */

th, td {
  padding: 15px;
}


/* Center-aligned tables (replacing deprecated align="center") */
.center-table {
  margin-left: auto;
  margin-right: auto;
}

/* Responsive YouTube iframes (Fix 16) */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Click-to-reveal spoiler for all devices (Fix 10) */
.spoiler.revealed {
  color: white;
  background-color: transparent;
}
.spoiler2.revealed {
  background-color: white;
}
