* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');



    
body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    z-index: 999;
}



.ellipse {
    width: min(63vw, 63vh);
    height: min(63vw, 33vh);
    aspect-ratio: 4/7;
    margin: -20px auto;
}

.ellipse svg {
    transform: rotate(0deg);
    width: 100%;
    height: 100%;
    display: block;
}

.ellipse svg text {
    fill: #000;
}
.clickable-text:hover *{
    text-decoration: underline;
}
.container {
    max-width: 800px;
    margin: 0 auto;
}

.site-nav {
    display: flex;
    gap: 1em;
    margin-bottom: 2em;
    margin-top: 2em;
    flex-wrap: wrap;
}

.site-nav a {
    color: #000;
    text-decoration: none;
    text-transform: lowercase;
}

.site-nav a:hover {
    text-decoration: underline;
}

.site-nav a.active {
    font-weight: bold;
}

h1 {
    margin-bottom: 20px;
}


li::marker {
    content: "✝";
  }
.expandable-section {
    margin-bottom: 15px;
}

.expandable-table-group {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.expandable-table-row {
    display: table-row;
}

.expandable-table-row .clickable-text {
    display: flex;
    width: 100%;
    align-items: center;
}

.expandable-table-row .clickable-text > table {
    flex: 1;
    width: 0;
    margin: 0;
    table-layout: fixed;
}

.expandable-table-row .clickable-text table td:first-child {
    width: 10%;
}

.expandable-table-row .clickable-text table td:nth-child(2) {
    width: 50%;
    text-align: left;
}

.expandable-table-row .clickable-text table td:nth-child(3) {
    width: 30%;
    text-align: right;
}

.expandable-table-row .clickable-text table td {

    border: none;
}

.expandable-table-row .toggle-indicator {
    margin-left: 10px;
    white-space: nowrap;
}

.clickable-text {
    cursor: pointer;
    display: block;
    margin-bottom: 1em;
}

.toggle-indicator {
    font-weight: bold;
    margin-left: 5px;
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    color: #999999;
}

.expandable-content.expanded {
    max-height: 1000px;
    transition: max-height 0.3s ease;
}

.expandable-content p {
    margin-top: 10px;
}

/* Markdown content styles */
.markdown-content {
    margin-bottom: 20px;
}

.markdown-content p {
    margin-bottom: 2em;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}



.markdown-content a {
    color: inherit;
    text-decoration: underline;
}

.markdown-content img {
    max-width: 30%;
    height: auto;
    display: block;
    margin: 1em 1em 1em 0em;
  float: left;
}

.markdown-content img:only-child {
    margin: 1em auto;
}

.markdown-content table {
    width: 100%;
    border-collapse: collapse;

}
.markdown-content table td:nth-child(3) {
    text-align: right;
}
.markdown-content table th,
.markdown-content table td {
    padding: 0;
    border: none;
    text-align: left;
}

.markdown-content table th {
    font-weight: normal;
    background-color: transparent;
}

/* Hide empty header rows */
.markdown-content table thead tr:first-child th:empty,
.markdown-content table thead tr:first-child th:only-child:empty,
.markdown-content table tr:first-child td:empty ~ td,
.markdown-content table tr:first-child th:empty ~ th {
    display: none;
}

/* Also hide if header only contains separator characters or whitespace */
.markdown-content table tr:first-child td,
.markdown-content table tr:first-child th {
    word-spacing: 0;
}

.markdown-content table tr:first-child td:contains(":-"),
.markdown-content table tr:first-child th:contains(":-") {
    display: none;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 2em 0;
}
.markdown-content table tr:last-child td {
    border-bottom: none;
}
