hr {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Post navigation links */
.post_navi {
  display: flex;
}

.post_navi-label {
  font-size: 0.8em;
  opacity: 0.5;
}

.post_navi .post_navi-item {
  padding: 0 2.2em;
  width: 50%;
  position: relative;
  color: inherit !important;
}

.post_navi .nav_prev {
  text-align: left;
}

.post_navi .nav_next {
  text-align: right;
}

.post_navi .nav_prev .post_navi-arrow {
  left: 0;
}

.post_navi .nav_next .post_navi-arrow {
  right: 0;
}

.post_navi .post_navi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  opacity: 0.3;
}

/* ------------------- My changes -------------- */
/* Post & research title sizes */
.posts-list a,
.research-list a {
  font-size: 1.2rem; /* Adjust the size as desired */
  text-decoration: none; /* Optional: Remove underline from links */
}

/* 'Posts' and 'Research' size */
h1, h2, h3, h4, h5, h6,
.section-title,
.site-title {
  font-family: "Times New Roman", Times, serif;
}

.section-title {
  font-size: 1.8rem; /* Adjust the size as desired */
  margin-top: 1em; /* Optional: adds space above headings */
}

body {
  background-color: #fce5cd;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Set font-family of headings to Times New Roman */
h1, h2, h3, h4, h5, h6 {
  font-family: "Times New Roman", Times, serif;
}

.site-header {
  background-color: transparent;
  background-image: none;
  box-shadow: none;
}

.site-title {
  background-color: transparent;
  background-image: none;
}

/* Make the table container scrollable horizontally */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Ensure the table doesn't shrink below its content width */
.table-container table {
  width: 100%;
  min-width: 600px; /* Adjust based on your table's natural width */
  border-collapse: collapse;
  background-color: transparent; /* Make the table background transparent */
}

/* Style the table cells */
.table-container td,
.table-container th {
  padding: 5px;            /* Reduced padding to decrease cell height */
  text-align: center;
  vertical-align: top;
  line-height: 1.2;        /* Adjusted line height */
  font-size: 0.9em;        /* Reduced font size if necessary */
  background-color: transparent; /* Make the background of cells transparent */
  border: 1px solid black; /* Optional: Set border color */
}

/* Ensure the table has a transparent background */
.table-container table {
  background-color: transparent; /* Make the table background transparent */
}

/* Optional: Adjust table borders */
.table-container table,
.table-container th,
.table-container td {
  border-color: black;     /* Set border color */
}

/* Remove borders entirely if desired */
.table-container table,
.table-container th,
.table-container td {
  border: none;            /* Remove borders to make cells invisible */
}

/* Optional: Adjust table caption styling */
.table-container caption {
  caption-side: top;
  padding: 5px;
  font-weight: bold;
}

/* Global scrollbar styling */
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
