body {
  font-family: 'Inter', sans-serif;
  color: #505050;
  background-color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2 {
  font-family: 'Inter', sans-serif;
  color: #395b64;
}
p, li {
  line-height: 1.75;
}
a {
  color: #395b64;
}
a:hover {
  color: #2c4650;
}

header a:hover{
  color: #fff;
}

table tbody tr:nth-child(odd) {
  background-color: #f9fafb;
}
table th, table td {
  padding: 1rem;
}
table thead tr {
  background-color: rgba(57, 91, 100, 0.1);
  color: #395b64;
}
.article-img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.header-logo {
  height: 68px;
  width: auto;
}
.nav-link {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
  color: white; /* Added to make links visible on dark header background */
}
.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #395b64;
}
.blog-tagline { /* New styles for the moved blog section in header */
  text-align: center;
  padding: 0.5rem 1rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.1); /* Subtle darker overlay for contrast */
}
.blog-tagline h1 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}
.blog-tagline p {
  margin: 0;
  opacity: 0.9;
}
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #395b64;
  color: white;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #2c4650;
  color: white;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.logo-wrapper {
  padding-left: 0.5rem;
}
footer {
  background-color: #395b64;
  color: white;
  padding: 2rem 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
article {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
main {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1rem;
}
.blog-preview {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
table {
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}
article h3 {
  margin-top: 0;
}
article small {
  color: #9ca3af;
}

@media (max-width: 640px) {
  .header-logo {
    height: 50px;
  }
  .nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }
  .article-img {
    max-height: 150px;
  }
  .blog-tagline {
    padding: 0.25rem 1rem;
  }
  .blog-tagline h1 {
    font-size: 1.25rem;
  }
}

.cta-button {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cta-button:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

td a:hover{
  text-decoration: underline;
}

td a{
  transition-duration: 300ms;
}

table tbody tr td{
  border-width: 1px;                /* border */
  border-color: rgb(229 231 235);   /* border-gray-200 */
  padding: 1rem;                    /* p-4 */
  text-align: left;  
}