/* Reset and Basic Styles */
body {
  max-width: 50em;
  margin: 0 auto;
  padding: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: black;
}

/* Header Styles */
.banner img {
  max-width: 100%;
  border: none;
  margin: 0;
  padding: 0;
}

.navbar {
  overflow: hidden;
  background-color: white;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: #333;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Dropdown Menu Styles */
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #333;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: rgb(236, 229, 229);
}

.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;
}

.dropdown:hover .dropdown-content {
  display: block;
}

button {
  background-color: white;
  border: 1px solid white;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
}

button a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}



/* Content and Sidebar Layout */
.sidebar {
  width: 20%;
  float: left;
  background-color: white;
  padding: 15px;
  box-sizing: border-box;
}

.sidebar h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sidebar a {
  display: block;
  color: #333;
  padding: 8px 0;
  text-decoration: none;
}

.sidebar a:hover {
  background-color: #ddd;
}

.content {
  width: 75%;
  float: right;
  padding: 15px;
  box-sizing: border-box;
}

/* Blog Content */
.context,
.blog-content {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.context ol li {
  display: block;
}

/* Table Styles */
.tablestyle {
  border: none;
  color: rgb(8, 8, 8);
  font-size: 12px;
  text-align: left;
  background-color: white;
}

.thumbnail {
  width: 7%;
  height: 7%;
  object-fit: cover;
  float: left;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: block;
}

.tablestyle img {
  max-width: 200px;
  border: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 1px solid black;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #f2f2f2;
}

/* Collapsible Styles */
.collapsible {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
}

.collapsible h2 {
  margin: 0;
  cursor: pointer;
}

/* Blog Image Styles */

.blogimage {
  width: 20%;
  height: 20%;
  object-fit: cover;
  float: left;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: block;
  
}


.supportimage {
  width: 5%;
  height: 5%;
  object-fit: cover;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: block;
}

/* More Link Styles */
.more-link {
  font-size: 16px;
  color: black;
  
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}



/* Footer Styles */
.myfooter {
  clear: both;
  padding: 20px;
  background-color: #f4f4f4;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
/* Footer Styles */
.myfooter {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

