/* --- Admin Styles (for Meta Box) --- */
#my-standalone-gallery-wrapper{background:#f9f9f9;border:1px solid #e5e5e5;padding:15px;border-radius:5px}#my-standalone-gallery-items{list-style:none;margin:0;padding:0}.gallery-item-row{background:#fff;border:1px solid #ddd;margin-bottom:10px;padding:10px;border-radius:3px;display:flex;align-items:center;justify-content:space-between;box-shadow:0 1px 1px rgba(0,0,0,.04)}.gallery-item-row .handle{cursor:grab;margin-right:10px;color:#888}.gallery-image-preview{display:flex;align-items:center;gap:15px;flex-grow:1}.gallery-image-preview .image-box{display:flex;flex-direction:column;align-items:center;gap:5px;width:150px}.gallery-image-preview img{max-width:100%;height:auto;border:1px solid #eee;background:#fdfdfd;padding:3px;box-sizing:border-box}.gallery-image-preview .cover-preview,.gallery-image-preview .full-preview{width:100px;height:75px;object-fit:contain}.remove-gallery-item{margin-left:20px;white-space:nowrap}

/* --- Public Gallery Styles (Aggressive Fix) --- */
.my-custom-gallery-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    justify-content: center !important;
    padding: 20px !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    background-color: #f9f9f9 !important;
}

.my-custom-gallery-item {
    width: 200px !important;
    height: 200px !important; /* Force fixed height */
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    background-color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.2s ease-in-out !important;
}

.my-custom-gallery-item:hover {
    transform: translateY(-5px) !important;
}

.my-custom-gallery-item a {
    flex-shrink: 0 !important;
}

.my-custom-gallery-cover-image {
    width: 100% !important;
    height: 150px !important; /* Force fixed image height */
    object-fit: cover !important;
    display: block !important;
}

.my-custom-gallery-caption {
    padding: 0 8px !important;
    text-align: center !important;
    font-size: 13px !important;
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* === Lightbox Positioning Fix (Aggressive) === */
#lightboxOverlay {
    position: fixed !important;
}

.lightbox {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
}

/* === Lightbox Navigation Buttons Custom Styles === */
.lb-nav{display:flex !important;align-items:center !important;padding:0 10px !important;box-sizing:border-box !important}.lb-nav a.lb-prev,.lb-nav a.lb-next{position:static !important;transform:none !important;margin:0 !important;float:none !important}.lb-nav a.lb-next{margin-left:auto !important}.lb-nav a.lb-prev,.lb-nav a.lb-next{width:40px !important;height:60px !important;background-color:rgba(0,0,0,.4) !important;background-position:center !important;background-repeat:no-repeat !important;background-size:24px !important;opacity:.7 !important;border-radius:8px;transition:background-color .3s,opacity .3s}.lb-nav a.lb-prev{background-image:url('data:image/svg+xml,%3Csvg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M70 15L30 50L70 85" fill="none" stroke="%23fff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') !important}.lb-nav a.lb-next{background-image:url('data:image/svg+xml,%3Csvg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 15L70 50L30 85" fill="none" stroke="%23fff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') !important}.lb-nav a.lb-prev:hover,.lb-nav a.lb-next:hover{opacity:1 !important;background-color:rgba(0,0,0,.7) !important}.lb-nav a.lb-prev span,.lb-nav a.lb-next span{display:none !important}

@media (max-width: 768px) {
    /* Admin Styles */
    .gallery-item-row{flex-direction:column;align-items:flex-start;gap:10px}.gallery-item-row .handle{margin:0 0 10px 0}.gallery-image-preview{flex-direction:column;align-items:flex-start;gap:10px;width:100%}.gallery-image-preview .image-box{width:100%;flex-direction:row;align-items:center;justify-content:flex-start;gap:10px}.gallery-image-preview .cover-preview,.gallery-image-preview .full-preview{width:80px;height:60px}.remove-gallery-item{margin-left:0;align-self:flex-end}
    /* Public Gallery */
    .my-custom-gallery-item {
        width: calc(50% - 8px) !important;
    }
    /* Lightbox */
    .lb-nav a.lb-prev,.lb-nav a.lb-next{width:30px !important;height:50px !important;background-size:20px !important}
}