/* Share button */
#shareButton {
    background: linear-gradient(to right, #0072ff, #0072ff); /* vibrant blue gradient */
    color: white;
    font-size: x-small;
    padding: 3px 6px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

#shareButton:hover {
    background: linear-gradient(to right, #0072ff, #0052cc);
    transform: scale(1.05);
}

#shareButton:active {
    transform: scale(0.95);
    background: #0052cc;
}
