.wp-gpt-chat-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.wp-gpt-chat-window {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0 !important;
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    margin-bottom: 15px;
}

.wp-gpt-chat-window p {
    margin: 10px 0;
    line-height: 1.5;
    word-wrap: break-word;
}

.wp-gpt-chat-window p strong {
    color: #333;
    margin-right: 8px;
}

.wp-gpt-chat-form input[type="text"] {
    width: 100% !important;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-right: 10px;
    transition: border-color 0.3s ease;
}

.wp-gpt-chat-form input[type="text"]:focus {
    outline: none;
    border-color: #4A90E2;
}

.wp-gpt-chat-form button {
    padding: 10px 35px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.wp-gpt-chat-form button:hover {
    background-color: #357ABD;
}

#wp-gpt-chat-new-conversation-{ID} {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px !important;
    margin-bottom: 15px !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.message img.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.message p {
    margin: 0;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 85%;
    word-wrap: break-word;
    line-height: 1.5;
}

.message.user p {
    background-color: #d1e7dd; /* Verde claro para usuario */
    color: #0f5132; /* Texto más oscuro */
    align-self: flex-end;
}

.message.gpt p {
    background-color: rgb(234, 240, 246); /* Gris claro para GPT */
    color: rgb(66, 91, 118); /* Texto más oscuro */
    align-self: flex-start;
}




/* Responsive Design */
@media (max-width: 600px) {
    .wp-gpt-chat-container {
        width: 95%;
        margin: 10px;
        padding: 10px;
    }

    .wp-gpt-chat-form input[type="text"],
    .wp-gpt-chat-form button {
        width: 100%;
        margin: 5px 0;
    }
}