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

footer {
  display: block; 
  text-align: center; 
  color: rgba(55, 53, 53, 0.833); 
  font-family: sans-serif; 
  font-size: 14px; 
  padding-top: 10px; 
  padding-bottom: 15px; 
}

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

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

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


video {
  border-radius: 5px; /* 8px 的圆角，可根据需要调整 */
}


/* 外层容器：左右按钮 + 可滚动区域并排 */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 10px; /* 箭头与滚动区域之间的间距 */
}

/* 按钮基础样式 */
.carousel-btn {
  background-color: #eee;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}

/* 悬停效果 */
.carousel-btn:hover {
  background-color: #ccc;
  color: #333;
}

/* 如果想让左右按钮叠在滚动区上面，可以绝对定位，比如：
.carousel-container {
  position: relative;
  ...
}
.carousel-btn.left {
  position: absolute;
  left: 0;
  z-index: 10;
}
.carousel-btn.right {
  position: absolute;
  right: 0;
  z-index: 10;
}
*/

/* 横向滚动区域 */
.grid-samples {
  display: flex;
  flex-wrap: nowrap;     /* 不换行 */
  overflow-x: auto;      /* 超出部分可横向滚动 */
  gap: 20px;
  margin-top: 12px;
  padding: 10px;
  scroll-behavior: smooth; /* 加了这句就能平滑滚动 */
}

/* 每个 sample-item 卡片固定宽度或最小宽度 */
.sample-item {
  flex: 0 0 240px; /* 每个卡片宽度可自行调整 */
  padding: 12px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  background-color: #fafafa;
  box-sizing: border-box;
}

.sample-item p {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}


.sample-item video {
  height: 200px;       /* 固定视频高度 */
  width: auto;         /* 宽度自适应 */
  object-fit: cover;   /* 充满容器; 如果想完整显示可用 contain */
  border: 1px solid #ccc;     /* 可选样式 */
  border-radius: 4px;         /* 可选圆角 */
  background-color: #fafafa;  /* 可选背景 */
}