body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.authors {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 60px; /* spacing between authors */
}

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

.author-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.button {
    background-color: #333;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

.main-image, .main-video {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

a {
    color: #2970c3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.abstract {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

/* Styles for side-by-side images */
.side-by-side-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    width: 100%;
    flex-wrap: wrap;
}

.side-image {
    width: 45%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.results-section {
    margin-top: 40px;
    width: 100%;
}

/* BibTeX section styling */
.bibtex-section {
    margin: 60px auto 40px;
    max-width: 800px;
    text-align: left;
}

.bibtex-heading {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.bibtex-content {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 14px;
    overflow-x: auto;
    white-space: pre-wrap;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .side-by-side-container {
        flex-direction: column;
    }
    
    .side-image {
        width: 100%;
        max-width: 400px;
    }
    
    .authors {
        flex-direction: column;
        gap: 15px;
    }
}