.gif-row {
display: flex;
justify-content: center;
margin-bottom: 15px;
}
.gif-row img {
width: 33.33%;   /* each gif takes exactly 1/3 of the row */
max-width: 250px; 
height: auto;
margin: 0;       /* no extra margin */
padding: 0;      /* no padding */
}

.gif-label {
width: 60px;          /* fixed label width */
display: flex;
align-items: center;  /* vertically center text */
justify-content: center;
font-weight: bold;
font-size: 20px;
margin-right: 1.0em;
}

.gradient-text {
background: #3F5EFB;
background: radial-gradient(circle,rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;   /* for Firefox */
  text-fill-color: transparent;
}

.authors {
    font-size: 1.25em;
    margin-top: 20px;   /* extra space between those sections */
    margin-bottom: 10px;
}

.affiliations {
    font-size: 1.25em;
    margin-top: 10px;   /* extra space between those sections */
    margin-bottom: 10px;
}

.affiliations span {
  margin-right: 1em; /* adjust spacing between items */
}

.CodeMirror {
    font-size: .8em;
    height: auto;
}

.CodeMirror-scroll {
    overflow-y: hidden;
    overflow-x: auto;
}

#header_img {
    margin-top: 2em;
    margin-bottom: 1em;
}

.list-inline {
	list-style: none;
	margin-left: -0.5em;
	margin-right: -0.5em;
	padding-left: 0;
}

.list-inline > li {
	display: inline-block;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

.quality_emoji {
	font-size: 65px;
}

.comp-margin {
	margin-bottom: 10px
}

.myGallery img {
    vertical-align: middle;
}


.video-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%; /* Adjust this to change overall width */
	margin: 0 auto;
	padding: 10px;
}
.video-item {
	width: 25%; /* Adjust this to change individual video width */
	margin: 0 10px 10px 0;
	text-align: center;
}
video {
	width: 100%;
}
.video-caption {
	font-size: 0.8em;
	margin-top: 5px;
}



/* Style for the buttons */
.button {
    width: 150px;
    display: inline-block;
    padding: 10px 10px;
    margin: 10px;
    border: 2px solid #353434;
    border-radius: 25px;
    background-color: #353434;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect for the buttons */
.button:hover {
    background-color: #fff;
    color: #000;
}

/* .button_row {
    margin:auto;
} */

.button_content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.button_item{
    width: 170px;
    text-align: center;
    margin: 5px 0;
    position:relative;
}


.banner{
    display: flex;
    justify-content:center;
    flex-flow: row wrap;
    width:100%;
    min-height: 300px; /* adjust value as you like */
    padding-top: 40px; /* extra spacing inside */
    padding-bottom: 20px;
}
.banner-visual{
    width:65%;
    flex-grow: 1;
}

.banner-title{
    width: max(480px, 35%);
    margin: auto;
    flex-grow: 1;
    padding: 30px;
}
.title{
}
.banner-img{
    width:100%;
}

.banner-video{
    display: block;
    max-height: 800px;
}

.multiple-color-gradient {
    background: #EEAECA;
    background: radial-gradient(circle,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
}

.authors_link {
    color: rgb(46, 46, 46);
}

.coming-soon{
    font-size: 0.8em;
    position: absolute;
    border-radius: 5px;
    padding: 3px;
    bottom:-4px;
    right:-4px;
    background-color: rgb(255, 221, 0);
}

.scroll-indicator {
    position: absolute;
    right: 10px;
    bottom: 30px;
    background-color: rgb(255, 196, 0);
    color: black;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    animation: bounce 1s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.image-sample{
    position: relative;
    margin-top:40px; 
    margin-bottom:40px;
    scrollbar-width: thick;
    scrollbar-color: #888 #f1f1f1;
}
/* For Webkit browsers (Chrome, Safari) */
.image-sample::-webkit-scrollbar {
    height: 12px;
}

.image-sample::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.image-sample::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

.video-sample{
    margin-top:40px;
    margin-bottom:40px;
}
.video-container{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;    
    justify-content: space-around;
    padding: 0;
}

.video-container-element{
    height: auto;
}

.video-container-title{
    background: yellow;
}

.website-footer{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

#bibtex {
    height: 200px;
}