#skalebot-chat-box-container {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 10px;
    z-index: 999;
}

#whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #30b3d5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

#whatsapp-icon img {
    width: 30px;
    height: 30px;
}

#profile-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #30b3d5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    margin-right: 10px;

}

#profile-icon img {
    width: 30px;
    height: 30px;
}

#skalebotapp-chat-box {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    font-family: Arial, sans-serif;
    color: #333;
}

#skalebotapp-chat-box header {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

#skalebotapp-chat-box header img {
    width: 40px;
    height: 40px;
}

#skalebotapp-chat-box header .bot-name {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

#skalebotapp-chat-box header .status {
    font-size: 12px;
    color: #888;
}

#skalebotapp-chat-box .content {
    padding: 16px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #f0f0f0;
}

#skalebotapp-chat-box .content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

#skalebotapp-chat-box .start-chat {
    display: block;
    text-align: center;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 0;
    margin: 16px;
    border-radius: 8px;
    text-decoration: none;
}

#skalebotapp-chat-box .start-chat:hover {
    background-color: #1ebd58;
}

#skalebotapp-chat-box .footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #888;
}

#skalebotapp-chat-box .footer a {
    text-decoration: none;
    color: #30b3d5;
    font-weight: bold;
}