/* File: ai-universal-plugin/css/ai-universal-plugin.css */
.ai-tool {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ai-tool label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}
.ai-tool #ai-tool-select{
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.ai-tool input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.ai-tool textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.ai-tool .generate-button {
    background-color: #007bff;
    color: white;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.ai-tool .generate-button:hover {
    background-color: #0056b3;
}
.ai-tool .results {
    margin-top: 15px;
    padding: 12px;
    border: 1px solid #eee;
    background-color: #fff;
    min-height: 50px;
    word-wrap: break-word;  /* Atau: overflow-wrap: break-word; */
}
.ai-tool .results p {
  font-style: italic;
}
.ai-tool .copy-button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
    display: inline-block;
}
.ai-tool .copy-button:hover {
    background-color: #e0e0e0;
}
/* Chatbot styles */
.chat-history {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    height: 200px;
    /* Atau sesuaikan */
    overflow-y: scroll;
    /* Agar bisa di-scroll jika panjang */
    background-color: #fff;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.chat-history p,
.chat-history li {
    margin: 0;
    padding: 0;
}
.user-message {
    text-align: right;
    margin-bottom: 5px;
    color: blue;
}
.ai-message {
    text-align: left;
    margin-bottom: 5px;
    color: green;
}
#chat-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.chat-send-button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.chat-send-button:hover {
    background-color: #0056b3;
}