/* Chat Window Styling */
.ai-chatbox {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.chat-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.ai-messages {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.ai-messages .user-message {
    background-color: #e3f7fc;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: left;
}

.ai-messages .ai-message {
    background-color: #f1f1f1;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: left;
}

.ai-messages ol {
    margin-left: 20px;
}

.ai-input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
}

.ai-user-input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.ai-send-button {
    width: 15%;
    padding: 10px;
    background-color: #05A4B3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.ai-send-button:hover {
    background-color: #037c7f;
}
