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


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

.duck_icon a {
  background-color: transparent;
}

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

.main 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;
}

.h-scrollbar {
  overflow-x: scroll;
  width: 300px;
}

.h-scrollbar div {
  width: 1000px;
  display: block;
}

.publication-title {}

.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;
}

.publication-banner img {}

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

.publication-video {
  position: relative;
  width: 90%;
  height: 90%;
  padding-bottom: 30%;

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

}

.image-container-wrapper {
  position: relative;
  max-height: 540px;
}
.image-container {
  max-height: 540px;
  overflow-y: scroll;
}

.scroll-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 10;
}

.responsive-image {
  max-width: 100%;
  height: auto;
}

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

.publication-body img {}

.results-carousel {
  overflow: hidden;
}

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

.results-carousel video {
  margin: 0;
}


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

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

.columns {
  background-color: transparent;
}

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

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

#interpolation-image-wrapper {
  width: 100%;
}

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

/* Analysis Carousel Styles */
.carousel-container-analysis {
  display: flex;
  align-items: center;
}

.carousel-analysis {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  gap: 1rem;
  padding: 1rem 0;
  margin: 0 1rem;
}

.carousel-item-analysis {
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px; /* Adjust this value based on your design */
}

.carousel-button-analysis {
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  user-select: none;
  padding: 0 1rem;
}

.carousel-button-analysis:focus {
  outline: none;
}

/* Videos Carousel Styles */
.carousel-container-videos {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2rem; /* Add some margin to avoid overlap */
}

.carousel-track-videos {
  display: flex;
  gap: 1rem;
  animation: scroll-videos 15s linear infinite; /* Slower animation */
}

.carousel-item-videos {
  display: inline-block;
  flex: 0 0 auto;
  width: 400px;
}

.faq-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

.faq-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin: 0;
  font-weight: bold;
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: #555;
}

.faq-question::before {
  content: "Q: ";
  font-weight: bold;
  color: #007bff;
}

.faq-answer::before {
  content: "A: ";
  font-weight: bold;
  color: #28a745;
}

.faq-item table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.faq-item th, .faq-item td {
  padding: 0.5rem;
  border: 1px solid #ddd;
}

.faq-item th {
  background-color: #f0f0f0;
  text-align: left;
}

.faq-item td {
  text-align: center;
}

.faq-note {
  color: #999;
  font-size: 0.9rem;
}

@keyframes scroll-videos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}