
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.375;
  
}
h1{
  font-size: 28.8px;
  
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  padding: 12px;
  text-align: left;
  border: 1px solid #dddddd;
}
th {
  background-color: #f4f4f4;
}
tr:nth-child(even) {
  background-color: #f9f9f9;
}
tr:hover {
  background-color: #f1f1f1;
}
h2{
  font-size: 21px;
  font-family: 'Linux Libertine','Georgia','Times','Source Serif Pro',serif;
  font-style: italic;
}

body {
  
  font-family: sans-serif;
  /* background-color: #f8f9fa; */
  color: #202122;
  line-height: 1.6;
  margin: 0;
}

/* Header styling */
header {
  background-color: #fff;
  /* border-bottom: 1px solid #ccc; */
  padding: 10px 20px;
  
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.menu_bar {
  display: flex;
  align-items: center;
}

.menu_bar .logo img {
  height: 40px;
  
  margin-left: 10px;
}

.search-bar {
  display: flex;
 
  align-items: center;
  margin-left: 300px;
  flex-grow: 1;
  
}
.search-bar i{
  z-index: 111;
  color: #aca6a6;
  margin-left: 10px;
  position: absolute;
  font-size: 14px;
}
.menu_bar h1{
  margin-left: 10px;
}

.search-bar input {
  padding: 9px;
  width: 400px;
 border-radius: 4px 0px 0px 4px;
  border: 1px solid #a2a9b1;
  
}

.search-bar button {
  border-radius: 0px 4px 4px 0px;
  padding: 9px 12px;
  margin-left: -1px;
  background-color: rgb(249, 241, 241);
  border: 1px solid #a2a9b1;
  color: #202122;
  cursor: pointer;
}



/* Updated the positioning for account actions */
.account-actions {
  margin-left: auto; /* This already pushes the account actions to the far right */
  display: flex; /* Keeps the links aligned in a row */
  align-items: center; /* Vertically aligns the links */
}

.account-actions a {
  color: #36c;
  margin-left: 20px;
  text-decoration: none;
 
}

.account-actions a:hover {
  text-decoration: underline;
}
.menu_title{
  
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}


/* Left sidebar styling */
.left-menu {
  position: fixed;
  top: 115px; /* Adjust for header height */
  left: 0;
  width: 200px;
  /* background-color: #f8f9fa; */
  padding-top: 20px;
  /* border-right: 1px solid #ccc; */
}

.left-menu ul {
  list-style-type: none;
  padding-left: 20px;
  
}

.left-menu ul li {
  margin-bottom: 15px;
  margin-top: 15px;
}

.left-menu ul li a {
  text-decoration: none;
  color: #36c;
  

}

.left-menu ul li a:hover {
  text-decoration: underline;
}
/* Left sidebar styling */
.right-menu {
  position: fixed;
  top: 115px; /* Adjust for header height */
  right: 0;
  width: 200px;
  /* background-color: #f8f9fa; */
  padding-top: 20px;
  /* border-right: 1px solid #ccc; */
}

.right-menu ul {
  list-style-type: none;
  padding-left: 20px;
}

.right-menu ul li {
  margin-bottom: 15px;
  margin-top: 15px;
}

.right-menu ul li a {
  text-decoration: none;
  color: #36c;
  
}

.right-menu ul li a:hover {
  text-decoration: underline;
}

/* Main content area */
.main-content {
  margin: 60px 220px 20px 220px; /* Adjust margin for left sidebar and header */
  padding: 20px;
  background-color: #fff;
  /* border: 1px solid #ccc; */
}
.main-content .main_title{
  font-size: 28.8px;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  border-bottom: 1px solid #ccc;
  font-family: 'Linux Libertine', 'Georgia', 'Times', 'Source Serif Pro', serif;
}
.main-content .main_menu{
 
  
  margin-bottom: 20px;
  align-items: center;
  
  
  border-bottom: 1px solid #ccc;
  font-family: sans-serif;
}
.main-content .main_menu span{
  float: right;
  padding: 0px 10px 10px 10px;
  text-decoration: none;
  color: #36c;
  font-size: 14px;
  font-family: sans-serif;
  cursor: pointer;
}
.main-content .main_menu a:hover{
  text-decoration: underline;
  
}


.main-content h2 {
  
  margin-top: 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid #a2a9b1;
  padding-bottom: 5px;
  font-family: sans-serif;
}

.main-content p {
  margin-bottom: 15px;

  line-height: 1.6;
  color: #202122;
}

/* Footer styling */
footer {
  border-top: 1px solid #ccc;
  background-color: #f8f8f8;
  padding: 20px;
  position:relative;
  
  bottom: 0;
  margin-top: 50px;
  text-align: left;
  
  color: #555;
}

footer p {
  margin: 5px 0;
  font-size: 12px;
}

footer a {
  color: #0066cc;
  font-size: 12px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer ul {
  list-style: none;
  padding: 0;
  
}

footer ul li {
  display: inline;
  margin: 0 10px;
}


/* Wikipedia-style table of contents */
.toc {
  border: 1px solid #a2a9b1;
  background-color: #f8f9fa;
  padding: 10px;
  margin-bottom: 20px;
}

.toc h2 {
  font-size: 14px;
  margin-bottom: 10px;
}

.toc ul {
  list-style-type: none;
  padding-left: 0;
}

.toc ul li {
  margin-bottom: 5px;
}

.toc ul li a {
  text-decoration: none;
  color: #36c;
  font-size: 1em;
}

.toc ul li a:hover {
  text-decoration: underline;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .menu_bar  {
    height: 40px;
    
    margin-left: 10px;
  }
  .logo img{
    height: 40px !important;
  }
  .left-menu {
    display: none; /* Hide left menu on smaller screens */
  }
  .right-menu {
    display: none; /* Hide left menu on smaller screens */
  }
 
  .main-content {
    margin: 100px 20px 20px 20px;
  }
 
.menu_bar h1{
  margin-left: 10px;
}
.search-bar {
  display: flex;
 margin-top: 100px;
  align-items: center;
  text-align: center;
 width: 100% !important;
 margin-left: 10px;

  position: absolute;
  flex-grow: 1;
  
}
.search-bar i{
  z-index: 111;
  color: #aca6a6;
  margin-left: 10px;
  position: absolute;
  font-size: 14px;
}
.menu_bar h1{
  margin-left: 10px;
}

.search-bar input {
  padding: 9px;
  width: 200px;
 border-radius: 4px 0px 0px 4px;
  border: 1px solid #a2a9b1;
  
}

.search-bar button {
  border-radius: 0px 4px 4px 0px;
  padding: 9px 12px;
  margin-left: -1px;
  background-color: rgb(249, 241, 241);
  border: 1px solid #a2a9b1;
  color: #202122;
  cursor: pointer;
}
}