.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.chat-widget.technical {
    /* Positioned at right: 20px by default */
}


.chat-header {
    padding: 10px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ccc;
}

.chat-body {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
}

.chat-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-top: 1px solid #ccc;
}

.user-message {
    text-align: right;
    color: #333;
}

.ai-message {
    text-align: left;
    color: #007bff;
}