#ilava-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}
#ilava-chatbot-toggle {
    background-color: #063459;
    color: white;
    padding: 12px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
#ilava-chatbot-box {
    width: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 10px;
    margin-top: 10px;
}
.ilava-chat-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2a3990;
}
.ilava-chat-body {
    font-size: 14px;
}
.chat-message {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 8px;
}
.chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-btn {
    background-color: #fe0000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
}
.chat-btn:hover {
    background-color: #063459;
}
a {
    color: #063459;
    font-weight: bold;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}