.albumpress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.albumpress-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.albumpress-grid img:hover {
    transform: scale(1.03);
}

/* Lightbox overlay */
#albumpress-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

#albumpress-lightbox-content img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}