* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', 'SF Pro Text', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #ffffff;
    color:  black;
    padding: 60px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

header h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
    font-weight: 600;
}

.authors {
    font-size: 16px;
    color: #007bff;
}

.authors a {
    color: #007bff;
    text-decoration: none;
}

.authors a:hover {
    text-decoration: underline;
}

.institution,
.conference,
.equal-contribution {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

.equal-contribution {
    font-size: 13px;
}

.conference {
    font-weight: 600;
}

.paper-links-section {
    margin: 20px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.paper-link {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.paper-link:hover {
    text-decoration: underline;
}

.buttons {
    margin: 20px 0;
}

.button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
}

.button:hover {
    background-color: #555;
}

/* Section Styling */
section {
    margin: 60px 0;
    align-items: flex-start;
    text-align: left;
}

section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    width: 100%;
}

.section-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

#abstract {
    align-items: center;
}

header, .image-section, section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
}

.image-section, section {
    margin-bottom: 100px;
}

/* Left-align the buttons */
.buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.buttons a {
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.buttons a:hover {
    background-color: #555;
}

section h2 {
    margin-bottom: 20px;
}

.section-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.description, section p {
    width: 100%;
    margin-bottom: 20px;
}

#abstract {
    background-color: #f9f9f9;
    padding: 30px;
    text-align: left;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.abstract-text {
    width: 100%;
    text-align: left;
    line-height: 1.5;
}



section h2 {
    text-align: left;
    margin-bottom: 20px;
    width: 100%; 
}

table.custom-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

table.custom-table th, table.custom-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

table.custom-table th {
    background-color: #f2f2f2;
}

table.custom-table td[rowspan] {
    vertical-align: middle;
    text-align: center;
}

/* Borderless stats table (A11y-CUA overview) */
table.stats-table {
    border: none;
    border-collapse: separate;
    border-spacing: 0 10px;
}

table.stats-table th,
table.stats-table td {
    border: none !important;
    background: transparent;
    padding: 10px 8px;
    vertical-align: top;
}

table.stats-table td:first-child {
    width: 30%;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    padding-right: 4px;
}

table.stats-table td:nth-child(2) {
    padding-left: 2px;
}

.stat-icon {
    display: inline-block;
    width: 1.4em;
}

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

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #e0e0e0;
}

td img {
    max-width: 150px;
    height: auto;
    display: inline-block;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
}
th, td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
}

th {
    background-color: #eef1f6;
}

.bibtex-code {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: left;
    font-family: monospace;
    border-radius: 5px;
    overflow-x: auto;
    width: 100%;
}

.bibtex-code pre {
    white-space: pre-wrap;
}

ul.dash-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

ul.dash-list li {
    position: relative;
    padding-left: 18px;
}

ul.dash-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #333;
}

