/* css/style.css */
@charset "utf-8";
/* Optional MIME type declaration */
/* Content-Type: text/css; charset=utf-8 */
/* CSS Document */

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.main-image,
.page-image {
  max-width: 66%;
  height: auto;
  margin-bottom: 20px;
}

.main-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.accordion {
  margin-bottom: 20px;
}

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.accordion-heading {
  background-color: #f9f9f9;
  padding: 10px;
  cursor: pointer;
}

.accordion-heading:hover {
  background-color: #f1f1f1;
}

.accordion-content {
  display: none;
  padding: 10px;
}

.accordion-content p {
  margin: 0;
}

.accordion-item.active .accordion-content {
  display: block;
}

@media screen and (max-width: 768px) {
  /* Add CSS styling for smaller screens here */
  .container {
    padding: 10px;
  }

  /* Updated table styles for small screens */
  .tg td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    border-bottom: 1px solid #ddd; /* Add a border between rows */
  }

  .tg td img {
    display: block;
    margin: 0 auto; /* Center the image horizontally */
  }
}

.header-links {
  font-family: 'Montserrat', sans-serif;
  font-weight: bolder;
  text-align: center;
  margin-top: 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: -20px;
}

.header-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.header-links li {
  margin: 0 10px;
}

.header-links li:first-child {
  text-align: left;
}

.header-links li:last-child {
  text-align: right;
}

.header-links a {
  text-decoration: none;
  color: #333;
}

.header-links a:hover {
  color: #666;
}

/* Table CSS */
.table-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.tg {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.tg td,
.tg th {
  border-color: black;
  border-style: solid;
  border-width: 1px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  overflow: hidden;
  word-break: normal;
  padding: 10px;
}

.tg th {
  font-weight: bold;
}

/* Mobile/Tablet Styles for Table */
@media screen and (max-width: 768px) {

  .tg.mobile tr {
  display: block;
  margin-bottom: 10px; /* Adjust the value as needed for spacing between rows */
  border: 2px solid teal; /* Adjust the thickness and color of the border */
  padding: 1px; /* Add padding to separate content from the border */
  }

  .tg.mobile td {
    display: block;
    width: 100%;
  /*  box-sizing: border-box; */
    text-align: left;
  }

  .tg.mobile th {
    display: none;
  }

  .tg.mobile td img {
    display: block;
    margin: 0 auto; /* Center the image horizontally */
  }
}
