#sb-wrapper {
    position: fixed;
    bottom: 220px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.sb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-btn:hover,
.sb-btn:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    color: #fff;
    text-decoration: none;
    outline: 2px solid rgba(255,255,255,0.6);
    outline-offset: 2px;
}

.sb-whatsapp {
    background-color: #25D366;
}

.sb-telegram {
    background-color: #229ED9;
}
