/*
* FooGallery Custom CSS
* This file is created by adding custom CSS on FooGallery Settings page in wp-admin
* Created : 27 Jul 2026, 4:53 pm
*/

/* Container for the social share dropdown */
.fg-social-share-menu {
    position: absolute;
    top: 45px;
    right: 10px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
    display: none; /* Hidden by default */
    align-items: center;
    gap: 12px;
    z-index: 999999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Active class to toggle visibility */
.fg-social-share-menu.fg-show {
    display: flex !important;
}

/* Share link buttons */
.fg-social-share-menu a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.fg-social-share-menu a:hover {
    transform: scale(1.2);
}

/* Individual brand colors on hover */
.fg-social-share-menu a.fg-share-fb:hover { color: #1877F2; }
.fg-social-share-menu a.fg-share-x:hover { color: #ffffff; }
.fg-social-share-menu a.fg-share-pin:hover { color: #E60023; }
.fg-social-share-menu a.fg-share-wa:hover { color: #25D366; }
.fg-social-share-menu a.fg-share-li:hover { color: #0A66C2; }