body {
  font-family: 'Noto Sans', sans-serif;
}


.footer .icon-link {
    font-size: 25px;
    color: #000;
}

.link-block a {
    margin-top: 5px;
    margin-bottom: 5px;
}

.dnerf {
  font-variant: small-caps;
}


.teaser .hero-body {
  padding-top: 0;
  padding-bottom: 3rem;
}

.teaser {
  font-family: 'Google Sans', sans-serif;
}


.publication-banner {
  max-height: parent;

}

.publication-banner video {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  object-fit: fit;
}

.publication-header .hero-body {
}

.publication-title {
    font-family: 'Google Sans', sans-serif;
}

.publication-authors {
    font-family: 'Google Sans', sans-serif;
}

.publication-venue {
    color: #555;
    width: fit-content;
    font-weight: bold;
}

.publication-awards {
    color: #ff3860;
    width: fit-content;
    font-weight: bolder;
}

.publication-authors {
}

.publication-authors a {
   color: hsl(204, 86%, 53%) !important;
}

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

.author-block {
  display: inline-block;
}

.author-block-small {
  font-size: smaller;
}

.publication-banner img {
}

.publication-authors {
  /*color: #4286f4;*/
}

.publication-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;

    overflow: hidden;
    border-radius: 10px !important;
}

.publication-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.publication-body img {
}

.results-carousel {
  overflow: hidden;
}

.results-carousel .item {
  margin: 0;
  overflow: hidden;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 0;
  font-size: 0;
}

.results-carousel .slider-pagination {
  position: absolute; /* Allow absolute positioning */
  bottom: -4px; /* Adjust this value to move dots lower */
}

.results-carousel video {
  margin: 0;
}


.interpolation-panel {
  background: #f5f5f5;
  border-radius: 10px;
}

.interpolation-panel .interpolation-image {
  width: 100%;
  border-radius: 5px;
}

.interpolation-video-column {
}

.interpolation-panel .slider {
  margin: 0 !important;
}

.interpolation-panel .slider {
  margin: 0 !important;
}

#interpolation-image-wrapper {
  width: 100%;
}
#interpolation-image-wrapper img {
  border-radius: 5px;
}


.code-container {
  display: flex;          /* Enables side-by-side layout */
  gap: 20px;              /* Space between blocks */
}

.code-container pre {
  flex: 1;                /* Make both blocks take equal width */
  background: #1e1e1e;    /* Dark background (optional) */
  color: #fff;            /* Text color */
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;       /* Horizontal scroll if code is wide */
}


.bibtex {
  background: #f5f5f5;
  border-radius: 10px;   /* Rounded corners */
  padding: 10px;
  font-family: monospace;
  overflow-x: auto;
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.copy-btn svg {
  transition: opacity 0.2s ease-in-out;
}



#container-photobanner {
  height: 40vh;                /* responsive: 40% of viewport height */
  min-height: 200px;           /* safe minimum for small devices */
  max-height: 350px;           /* avoid too tall on large screens */
  width: 100%;
  background: #9b2226;
  position: relative;
  overflow: hidden;
  display: flex;               /* flexbox for vertical centering */
  align-items: center;         /* center photobanner vertically */
}

.photobanner {
  display: inline-block;
  white-space: nowrap;
  animation: bannermove 20s linear infinite alternate;
  will-change: transform;      /* performance hint */
}

.photobanner img {
  height: 300px;                 /* scale images to banner height */
  max-height: 100%;            /* prevent overflow */
  margin: 0 10px;              /* spacing between images */
  border-radius: 5px;          /* rounded corners */
  vertical-align: middle;
  object-fit: contain;         /* keep aspect ratio without cropping */
}

@keyframes bannermove {
  0% {transform: translate(-0%);}
  100% {transform: translate(-50%);}
}

.photobanner:hover {
  animation-play-state: paused;
}




@media (max-width: 1024px) {
  #container-photobanner {
    height: 30vh;
    max-height: 280px;
  }

  .photobanner img {
    height: 220px;
    margin: 0 8px;
  }

  .photobanner {
    animation-duration: 25s; /* slower = smoother */
  }
}

@media (max-width: 768px) {
  #container-photobanner {
    height: 22vh;
    min-height: 140px;
    max-height: 200px;
  }

  .photobanner img {
    height: 140px;
    margin: 0 6px;
  }

  .photobanner {
    animation-duration: 30s;
  }
}

@media (max-width: 480px) {
  #container-photobanner {
    height: 18vh;
    min-height: 120px;
  }

  .photobanner img {
    height: 110px;
    margin: 0 5px;
  }
}



.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-wrapper table {
  min-width: 700px; /* ensures columns don’t squash */
}

/* Tablet */
@media (max-width: 1024px) {
  #table1 {
    font-size: 14px;
  }

  #table1 th,
  #table1 td {
    padding: 6px 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #table1 {
    font-size: 13px;
  }

  #table1 th,
  #table1 td {
    padding: 5px 6px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  #table1 {
    font-size: 12px;
  }
}

