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-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: 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;
  padding: 0 1rem !important;
}

.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  padding: 20px;
  font-size: 0;
}
.results-carousel .item img {
  width:90%; /* Make images smaller - 80% of container width */
  height: auto; /* Maintain aspect ratio */
  /* max-width: 600px; Set a maximum width limit */
  margin: auto; /* Center the images horizontally and vertically */
  display: block; /* Ensure block display for centering */
}

.results-carousel .item .subtitle {
  font-weight: bold;
  margin-top: 15px;
  font-size: 1.5rem;
}

.results-carousel video {
  margin: 0;
}

.slider-pagination .slider-page {
  background: #000000;
}

.slider-pagination .slider-page.is-active,
.slider-pagination .slider-page:hover {
  transform: scale(1.6) !important; /* Increased scale effect */
}

/* Navigation arrows - make them bigger too */
.slider-navigation-next,
.slider-navigation-previous {
  background: rgba(0, 0, 0, 0.8) !important;
  border: 3px solid #fff !important;
  color: #fff !important;
  width: 5rem !important;
  height: 5rem !important;
  background-size: 30px 30px !important;
  opacity: 0.9 !important;
  transition: opacity 0.3s ease !important;
}

.slider-navigation-next:hover,
.slider-navigation-previous:hover {
  opacity: 1 !important;
  background: rgba(0, 0, 0, 0.9) !important;
}

.eql-cntrb { 
  font-size: smaller;
}

/* Tab content styling */
.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

/* Accordion Styles */
.accordion-container {
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-section {
  margin-bottom: 1rem;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.accordion-section:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background: #eeeeee;
}

.accordion-header.active {
  background: #e8e8e8;
}

.accordion-title {
  flex: 1;
  color: #363636;
}

.accordion-icon {
  margin-left: 1rem;
  transition: transform 0.3s ease;
  color: #4a4a4a;
  font-size: 1rem;
}

.accordion-header.active .accordion-icon {
  transform: rotate(-180deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content.active {
  max-height: 5000px;
  padding: 2rem 1.5rem;
}

/* For initial state - first section open by default */
.accordion-section:first-child .accordion-content {
  max-height: 5000px;
  padding: 2rem 1.5rem;
}

.accordion-section:first-child .accordion-header {
  background: #e8e8e8;
}

.accordion-section:first-child .accordion-icon {
  transform: rotate(-180deg);
}

/* Scenario Navigation Styles */
.scenario-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.scenario-btn {
  padding: 1rem 1.5rem;
  background: #f5f5f5;
  border: 2px solid #dbdbdb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #363636;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.scenario-btn:hover {
  background: #e8e8e8;
  border-color: #b5b5b5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.scenario-btn.active {
  background: #ff3860;
  color: white;
  border-color: #ff3860;
  box-shadow: 0 4px 12px rgba(255, 56, 96, 0.3);
}

.scenario-btn.active:hover {
  background: #e63946;
  border-color: #e63946;
}

/* Scenario Carousel Container */
.scenario-carousel-container {
  position: relative;
  min-height: 600px;
  margin-top: 2rem;
}

.scenario-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  pointer-events: none;
}

.scenario-content.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness for scenario buttons */
@media screen and (max-width: 768px) {
  .scenario-btn {
    min-width: 100%;
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
  }
  
  .scenario-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}



