/* BODY */
body {
  background-color: #EAC1A4;
  margin-top: 50px; /* Add a top margin to avoid content overlay */
}

/* NAVBAR: The navigation bar */
.navbar {
  overflow: hidden;
  background-color: #A36C45;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}

/* NAVBAR: Links inside the navbar */
.navbar a {
  float: right;
  display: block;
  color: #FFE6D4;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* NAVBAR: Change background on mouse-over */
.navbar a:hover {
  background: #EAC1A4;
  color: black;
}

/* Main content */
.main {
  margin-top: 50px; /* Add a top margin to avoid content overlay */
}

/* TIMETABLES */
table {
  background-color: #FFE6D4;
}
tr:nth-child(even) {
  background-color: #FFF4EB;
} 
#schedules {
  float: none;
  text-align: center;
}
#weekschedule {
  display: inline-block;
  vertical-align: top;
}
#festschedule {
  display: inline-block;
  vertical-align: top;
}
#shabatschedule {
  display: inline-block;
  vertical-align: top;
}
#lessons {
  display: inline-block;
  vertical-align: top;
}
#navigation {
  clear: both;
}
