.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin: 0 auto;
}

.image {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.year-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    font-size: 18px;
}

.year-links a {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
}
.year-links .active {
    background-color: #007bff; /* Highlight color */
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.lb-nav {
    display: block !important;
}

.lb-outerContainer {
    z-index: 10000;
}

@media only screen and (max-width: 768px) {
    .image-container {
        padding: 10px;
    }
    .image {
        border-radius: 5px;
        box-shadow: none;
    }
    .year-links {
        padding: 10px;
    }
    .year-links a {
        padding: 5px 10px;
    }
}
.current-year {
    font-size: 36px;
    font-weight: bold;
    color: red; /* Highlight color */
    text-align: center;
    margin-bottom: 20px;
}
.cover-pic {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cover-pic img {
    max-width: 100vw; /* Prevent the image from being wider than the viewport width */
    height: auto; /* Maintain the aspect ratio */
    display: block; /* Remove any inline-block spacing */
}

@media only screen and (max-width: 768px) {
    .cover-pic img {
        height: 30vh !important; /* Reduce height for smaller screens */
        object-fit: cover !important;
    }
}