#share-wrapper {
    position: fixed;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    z-index: 1000;
}
/* SMALLER BUTTONS */
#share-wrapper .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    width: 40px; /* smaller width */
    height: 40px; /* smaller height */
    background: #3273dc;
    color: #fff;
    border-radius: 20px 0 0 20px; /* smaller radius */
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px; /* smaller icon */
}
#share-wrapper .share-btn.sms {
    background: #23a455;
}
#share-wrapper .share-btn.whatsapp {
    background: #25d366;
}
#share-wrapper .share-btn.phone {
    background: #ff9800;
}
#share-wrapper .share-btn:hover {
    opacity: 0.85;
}
