/* Styling für den Bildansichten-Zähler */
.gallery-image {
    position: relative;
    overflow: hidden;
}

/* Counter in der Übersicht */
.image-view-counter {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 4px;
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.image-view-counter i {
    margin-right: 0.3rem;
    color: white;
}

/* Hover-Effekt für die Galerie-Übersicht */
.gallery-image:hover .image-view-counter {
    opacity: 1;
}

.gallery-image .image-view-counter {
    opacity: 0.7;
}

/* Counter in der Lightbox */
#image-view-counter {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    z-index: 1050;
}
