/**
 * Lightbox CSS for Buzz Paper Theme
 */

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Lightbox container */
.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

/* Lightbox image */
.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
}

/* Lightbox-enabled images */
.lightbox-enabled {
    transition: opacity 0.3s ease;
}

.lightbox-enabled:hover {
    opacity: 0.8;
}

/* Add a subtle indicator that image is clickable */
.entry-content img.lightbox-enabled {
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.entry-content img.lightbox-enabled:hover {
    border-color: #007bff;
}