body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.authors {
    font-size: 18px;
    margin-bottom: 10px;
}

.affiliation {
    font-style: italic;
    margin-bottom: 20px;
}

.conference {
    font-weight: bold;
    margin-bottom: 30px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: none;
    font-size: 16px;
    gap: 8px;
    border-radius: 5px;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.button i {
    font-size: 20px;
}

/* Remove all background colors */
.button.arxiv, .button.github, .button.dataset {
    background: none;
}

.button.arxiv:hover, .button.github:hover, .button.dataset:hover {
    background: none;
}

/* Set specific colors for icons and text */
.button.arxiv {
    color: #b31b1b;
}

.button.github {
    color: #24292e;
}

.button.dataset {
    color: #4CAF50;
}

/* Additional styles for the citation pre element */
.section pre {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}

/* Additional styles for the overview image */
.section img {
    max-width: 100%;
    height: auto;
    margin: 20px auto 10px auto;
    display: block;
}

/* Add specific styles for CIFAR results */
img[alt="CIFARResults"] {
    width: 90%;  /* Match the width of stage images */
}

/* Update and add these styles */
.results-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.result-item {
    width: 100%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-item img {
    width: 90%;
    max-width: 700px;
    height: auto;
    display: block;
}

/* Add styles for the results grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.results-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.results-column img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    margin-top: 10px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95em;
    text-align: center;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .result-item img,
    .results-column img {
        width: 100%;
    }

    .caption {
        width: 100%;
    }
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    padding: 10px 0;
}

.logo {
    margin: 0;
}

.logo:first-child img {
    max-width: 180px;
    height: auto;
}

.logo:last-child img {
    max-width: 150px;
    height: auto;
}

.equal-contribution {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}