/* Container do chat */
.tess-chat-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 	background: #000;
 	border-radius: 12px;
}

/* Área de mensagens */
.tess-chat-messages {
    padding: 16px;
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto;
    background: #e5ddd5;
    border-radius: 8px;
    margin-bottom: 12px;
  	background: #000;
}

/* Bolhas de mensagem */
.tess-chat-message {
    max-width: 75%;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Mensagem do usuário (direita, verde) */
.tess-chat-message-user {
    background: #333;
    margin-left: auto;
    text-align: left;
    border-bottom-right-radius: 2px;
}

/* Mensagem da IA (esquerda, branco) */
.tess-chat-message-ai {
    background: #666;
    margin-right: auto;
    text-align: left;
    border-bottom-left-radius: 2px;
}

/* Formulário */
.tess-chat-form {
    display: flex;
    gap: 8px;
}

.tess-chat-input {
    flex: 1;
    border-radius: 24px;
    border: 1px solid #ccc;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
  	background: #333;
}

.tess-chat-input:focus {
    border-color: #999;
}

.tess-chat-send-btn {
    background: #999;
    color: #000;
    border: none;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.tess-chat-send-btn:hover {
    background: #333;
}

.tess-chat-send-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
