﻿.share-dropdown {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
    user-select: none;
}

.share-btn {
    padding: 8px 16px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
}

    .share-btn:hover {
        background-color: #555;
    }

.share-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 2px 0 0 0;
    border-radius: 6px;
    border: 1px solid #eee;
}

    .share-menu li a,
    .share-menu li .copy-btn {
        color: #333;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 14px;
        cursor: pointer;
    }

        .share-menu li:hover,
        .share-menu li .copy-btn:hover {
            background-color: #f8f9fa;
        }

.divider-btn-share {
    height: 1px;
    background-color: #eee;
    margin: 4px 0;
}

.dropdown-overlay-share {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 998;
    cursor: default;
}