/* Gallery lightbox: action buttons (share + close) in a single flex row */

.ug-lightbox-actions {
    position: absolute;
    z-index: 5;
    top: 17px;
    right: 12px;
    display: flex;
    gap: 6px;
}

.ug-action-btn {
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    line-height: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    transition: background 0.2s, transform 0.15s;
    color: #e5e5e5;
    -webkit-user-select: none;
    user-select: none;
}

.ug-action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

.ug-action-share:hover {
    background: rgba(10, 110, 46, 0.55);
}

.ug-action-close:hover {
    background: rgba(180, 40, 40, 0.45);
}

/* Share toast notification */
#ug-share-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a6e2e;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 9999999;
}

#ug-share-toast.show {
    opacity: 1;
}
