.cb-buttons {
    position: fixed;
    left: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.cb-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: 30px;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.cb-button:hover {
    transform: scale(1.05);
}

.cb-messenger { color: #9146FF; }
.cb-facebook { color: #1877F2; }
.cb-youtube  { color: #FF0000; }

.cb-button img {
    width: 20px;
    height: 20px;
}
