/* Share Button Styles */
.share-container {
    position: relative;
    margin: 1rem 0 0;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.share-button:hover {
    background: var(--secondary-color);
}

.share-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px;
    z-index: 2;
    min-width: 200px;
}

.share-menu.active {
    display: block;
}

.share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 14px;
}

.share-item:hover {
    background: #f5f5f5;
}

.share-item img {
    width: 20px;
    height: 20px;
}

.share-item.copied {
    background: #e8f5e9;
    color: #2e7d32;
}