
#chat-container {
    background-color: #F8F2E4;
    border: 1px solid #ddd;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

#chat-container input,
#chat-container button {
    font-size: 14px;
}

#chat-input {
    width: calc(100% - 70px);
    padding: 8px;
    margin-right: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#chat-send {
    padding: 8px 12px;
    border: none;
    background-color: #171F4D;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#chat-send:hover {
    background-color: #171F4D;
}

#chat-loading {
    margin-top: 10px;
    font-style: italic;
    color: #888;
}

#chat-response {
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 18px;
}

.chat-bubble {
    background-color: #fff;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    line-height: 1.4;
    word-wrap: break-word;
}
