/* Club Web Lightbox Styles */
.club-web-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.gallery-image,
.event-image {
    cursor: pointer;
}

.club-web-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-web-responsive-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.club-web-close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1051;
    line-height: 1;
}

.club-web-close-button:hover,
.club-web-close-button:focus {
    color: #ffffff;
    text-decoration: none;
}

.club-web-show {
    display: flex !important;
}

.club-web-hidden {
    display: none !important;
}

@media (max-width: 576px) {
    .club-web-close-button {
        top: 12px;
        right: 18px;
        font-size: 32px;
    }

    .club-web-modal-content {
        max-width: 95%;
        padding: 0.5rem;
    }
}
