/* استایل شورت‌کد */
.st-chatbot-shortcode {
    padding: 12px 24px;
    background: var(--st-primary-color, #4b6cb7);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'IRANSans', sans-serif;
    transition: all 0.3s;
}

/* استایل چت‌بات */
.st-chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: none;
}

.st-chatbot-box {
    width: 380px;
    max-width: 95vw;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    font-family: 'IRANSans', sans-serif;
}

.st-chatbot-header {
    background: var(--st-primary-color, #4b6cb7);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
}

.st-chatbot-header img {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border-radius: 50%;
}