/* Campo de input no fluxo do chat (todos os tipos) */

.chat-input-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    width: 100%;
    max-width: 280px;
}

.chat-input-field {
    flex: 1;
    min-width: 0;
    height: 40px;
    padding: 0 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #111;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.chat-input-field:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.chat-input-field:disabled {
    opacity: 0.65;
}

.chat-input-send {
    flex-shrink: 0;
    height: 40px;
    padding: 0 16px;
    border: none;
    border-radius: 20px;
    background: #fe2c55;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.chat-input-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-input-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
}

.chat-msg-in .chat-input-wrap {
    margin-left: 0;
}
