/* assets/css/social-buttons.css */
.socialButtons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

.whatsappButton,
.telegramButton,
.instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px; 
    padding: 10px 16px; 
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.whatsappButton { background-color: #25D366; }
.telegramButton { background-color: #0088cc; }

.whatsappButton:hover,
.telegramButton:hover
.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.instagram { background: #e1306c; }
