﻿.share-container {
    position: relative;
    display: inline-block;
}

.share-menu {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    min-width: 240px;
    z-index: 1000;
}

    .share-menu a,
    .share-menu button {
        padding: 8px 16px;
        text-align: left;
        background: none;
        border: none;
        font-size: 14px;
        text-decoration: none;
        color: #333;
        cursor: pointer;
    }

        .share-menu a:hover,
        .share-menu button:hover {
            background-color: #f0f0f0;
        }

.hidden {
    display: none;
}

.arrow-up {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}

.share-item {
    display: flex;
    align-items: center;
    gap: 8px;
}


#share-button {
    background-color: transparent;
    border: none;
    padding: 0.25em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 2em;
    height: 1.8em;
}

    #share-button svg path {
        fill: #002247;
    }

    #share-button:hover svg path {
        fill: #6b6b6b;
    }
