/* Inserted content container */
.sjb-inserted-content {
    margin: 30px 0;
    padding: 20px;
    text-align: center;
}

/* Call to action text */
.sjb-call-to-action {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

/* Buttons container - HORIZONTAL */
.sjb-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
}


/* Button styles - SIMPLE, NO HOVER */
.sjb-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

/* WhatsApp button - GREEN */
.sjb-button-whatsapp {
    background-color: #25D366;
}

/* Telegram button - BLUE */
.sjb-button-telegram {
    background-color: #0088cc;
}

/* Button icon */
.sjb-button i {
    font-size: 18px;
}

/* Button label */
.sjb-button-label {
    font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sjb-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .sjb-button {
        width: 200px;
        justify-content: center;
    }
}