.collage-container {
    position: relative;
  }
  
  /* File name overlay (caption) */
.file-name-overlay {
    position: absolute;
    bottom: 0.5em;
    left: 0.5em;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.5em;
    font-size: 0.8em;
    border-radius: 0.3em;
  }
  
  /* Navigation arrow buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.7em;
    cursor: pointer;
    font-size: 1em;
    border-radius: 50%;
    user-select: none;
 }
.nav-left {
    left: 0.5em;
}
.nav-right {
    right: 0.5em;
}
.plushy-title{
  margin-bottom: 0.5em;
}

/*photo collage*/
.photo-collage {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    justify-content: center;
}
.collage-image {
    height: 20em;
    object-fit: cover;
    cursor: pointer; /* Makes the pointer appear as a clickable hand */
    max-width: 100%;
}
.collage-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 0.2em; 
}