#shareBtnWrapper {
    position: relative; /* Add relative positioning to the wrapper */
    display: inline-block; /* Prevent the wrapper from taking up the full width */
}

#shareBtn {
    font-size: 20px;
    /*padding: 10px;*/
    cursor: pointer;
}

#shareOptions {
    display: none;
    margin-top: 10px;
    background-color: black;
    padding: 10px;
    color: white;
    width: 140px; /* Set a specific width */
    border-radius: 4px; /* Add rounded corners */
    position: absolute; /* Add absolute positioning */
    right: 0; /* Position to the right of the share button */
    top: 100%; /* Position below the share button */
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5); /* Add a drop shadow */
	
}

.shareOption {
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 18px; /* Increase the font size */
    font-family: Arial, sans-serif; /* Change the font */
}

.shareOption:hover {
    background-color: #333333;
}
