/* Additional custom styles */

/* Page layout */
body {
  background: #fff;
}

/* Main content container */
main {
  min-height: calc(100vh - 180px);
  background: white;
}

main > .content {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
}

/* Navigation */
.navbar {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Image styling */
img {
  max-width: 100%;
  height: auto;
}

/* Table styling */
table {
  width: 100%;
  margin: 1rem 0;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  overflow: hidden;
  font-size: 1rem;
}

table th {
  background: #003B5C;
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid #FFD100;
}

table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #eee;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover {
  background-color: rgba(255, 209, 0, 0.05);
}

table td:first-child {
  white-space: nowrap;
  font-weight: 600;
  color: #003B5C;
  width: 90px;
  font-size: 0.95rem;
}

table td strong {
  color: #003B5C;
  font-weight: 600;
}

/* Links */
a {
  color: #003B5C;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: #005580;
  text-decoration: underline;
}

/* Hide quarto title */
.quarto-title {
  display: none;
}

/* Sponsor logos */
.sponsor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.sponsor-logos img {
  max-height: 100px;
  width: auto;
  opacity: 0.9;
}

/* Lists */
ul, ol {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

li {
  margin: 0.3rem 0;
  font-size: 1.05rem;
}

/* Strong text consistency */
strong {
  font-weight: 600;
  color: #222;
}
