body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 1.2em;
}

header {
    background: #f4f4f4;
    padding: 1em 0;
    border-bottom: 1px solid #ccc;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold !important;
}

.underline {
    text-decoration: underline;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    font-size: 18px;
}

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

h1 {
    font-size: 2.5em;
    margin-top: 10px;
}



footer {
    background: #f4f4f4;
    padding: 1em 0;
    text-align: center;
    border-top: 1px solid #ccc;
}

.light-yellow {
    background-color: lightyellow;
}

blockquote {
    font-style: italic;
    color: #666;
    margin-left: 20px auto;
    margin-right: 20px auto;
}

footer blockquote {
    font-style: italic;
    color: #666;
    margin-left: 20px auto;
    margin-right: 20px auto;
}

.section {
    display: none;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.section.active {
    display: block;
    opacity: 1;
}

.nav-link {
    display: block;
    color: black;
    text-decoration: underline;
    margin-top: 20px;
}

.nav-link-right {
    
    color: black;
    text-decoration: underline;
    margin-top: 20px;
    text-align: right;
    
}

.nav-link-left {
    
    color: black;
    text-decoration: underline;
    margin-top: 20px;
    text-align: left;
}

.nav-container {
    display: flex;
    justify-content: space-between;
  }
  
  .nav-link-left, .nav-link-right {
    display: inline-block;
  }

span.c1 strong {
    font-weight: bold !important;
  }

  table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

/* Header style */
th {
    background-color: #e0e0e0; /* Slightly darker gray than #f2f2f2 */
    font-weight: bold;
}

/* Alternate row background color */
tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
tr:hover {
    background-color: #f5f5f5;
}

.citation-link {
    position: relative;
    text-decoration: none;
    color: #0000EE;
    cursor: pointer;
}

.citation-text {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9f9f9;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: 300px;
    z-index: 1000;
    font-size: 14px;
    line-height: 1.4;
}

.citation-link:hover .citation-text {
    display: block;
}

/* Style for backlinks in the main text */
a[id^="ftnt_ref"] {
    vertical-align: super;
    font-size: smaller;
    text-decoration: none;
}