/* Estilo principal do formulário do Concierge Digital */
/* #concierge-container {
    margin: 20px auto;
    max-width: 600px;
    font-family: Arial, sans-serif;
}

#concierge-form {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#concierge-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

#concierge-form textarea,
#concierge-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

#concierge-form textarea {
    resize: vertical;
    height: 120px;
}

#concierge-form button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#concierge-form button:hover {
    background-color: #005177;
}

#concierge-test-result {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
    white-space: pre-wrap;
    color: #333;
    max-height: 300px;
    overflow-y: auto;
} */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px); /* Move ligeiramente para baixo */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Volta à posição original */
    }
}

.messageInput {
    animation: fadeIn 0.3s ease-out;
}

.question-block:has(> .attachment-instructions-container) {
    flex-wrap: wrap !important;
}
.question-block:has(> .attachment-instructions-container) label {
    width: fit-content !important;
}
.question-block .attachment-instructions-container {
    width: 100%;
}