.share-menu {
    position: absolute;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1000;
    display: none;
    width: 200px;
}

.share-menu.show {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

.share-option {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.share-option:hover {
    background-color: var(--hover-bg);
}

.share-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    color: white;
    font-size: 12px;
}

.share-label {
    font-size: 14px;
    color: var(--text-primary);
}

.facebook-icon {
    background-color: #1877f2;
}

.twitter-icon {
    background-color: #1da1f2;
}

.linkedin-icon {
    background-color: #0a66c2;
}

.whatsapp-icon {
    background-color: #25d366;
}

.telegram-icon {
    background-color: #0088cc;
}

.copy-icon {
    background-color: #6c757d;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Toast notification styles */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease;
}
