@charset "UTF-8";
/* CSS Document */


.main-image-container {
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

#main-image {
    width: 100%;
    height: auto;
    border: 2px solid #ccc;
}

#main-caption {
    margin-top: 8px;
}

#main-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 4px;
}

#main-desc {
    font-size: 0.9em;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* maximal 3 Zeilen */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumbnails-wrapper {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    margin-top: 15px;
}

.thumbnails-container {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 80%;
    padding: 5px;
}

.thumbnails-container::-webkit-scrollbar {
    height: 8px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.thumbnail {
    width: 100px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.thumbnail.active {
    border-color: #007BFF;
}

.nav-button {
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    font-size: 18px;
}