* {
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
}

.clickable-image {
    cursor: pointer;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
    cursor: pointer;
}

.fullscreen-overlay > i {
    box-sizing: border-box;
    margin: 0;
    padding: 12px 15px;
    font-size: 24px;
    color: white;
    background-color: rgba(11, 64, 8, 1);
    border-radius: 100%;
    transition: transform 0.3s ease-in-out;
}

.fullscreen-overlay > i:active {
    background-color: rgba(11, 64, 8, 1);
    transform: scale(0.90);
}

.fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-overlay img {
    max-height: 90%;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 1128px) {
    .fullscreen-overlay > i {
        transform: scale(0.8);
    }
}