/* Custom CSS for Quarto */

/* Base font size and root variables */
:root {
    --font-size-root: 19px; /* Base font size */
    --toc-font-size: 1rem; /* Smaller font size for TOC */
}

/* Base styles */
body {
    font-size: var(--font-size-root);
    color: #000000;
    line-height: 1.5;
    margin: 0 auto;
    padding: 1rem;
}

/* Headings */
h1 {
    font-size: 2.75rem; /* 52.25px */
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
h2 {
    font-size: 2.25rem; /* 42.75px */
    line-height: 1.2;
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
}
h3 {
    font-size: 1.875rem; /* 35.625px */
    line-height: 1.2;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.5rem; /* 28.5px */
    line-height: 1.2;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}
h5 {
    font-size: 1.25rem; /* 23.75px */
    line-height: 1.2;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
h6 {
    font-size: 1rem; /* 19px */
    line-height: 1.2;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

/* Table of Contents (TOC) */
#TOC {
    font-size: var(--toc-font-size);
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Tables */
table {
    font-size: var(--font-size-root);
    line-height: 1.5;
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
table th, table td {
    padding: 0.75rem;
    text-align: left;
}
table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Remove all vertical borders */
table td {
    border-left: none;
    border-right: none;
}

/* Remove the first horizontal border */
table tr:first-child th,
table tr:first-child td {
    border-top: none;
}

/* Remove underline from links */
a {
    text-decoration: none; /* Remove underline from links */
}