.survey-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.survey-form label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px; /* Ajuste a margem para melhorar o espaçamento se necessário */
}


.survey-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.survey-form label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    flex: 1 1 100%;
}

.survey-form input[type="date"],
.survey-form select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 250px;
}

/* Espaço extra abaixo do campo de Data Fim */
.survey-form input[type="date"]#data_fim {
    margin-bottom: 20px; /* Espaçamento maior entre o campo de data e os botões */
}

.survey-submit-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.survey-submit-button:hover {
    background-color: #45a049;
}

.survey-new-query-button,
.survey-print-button {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48%;
}

.survey-new-query-button {
    background-color: #FF6347;
    color: white;
}

.survey-new-query-button:hover {
    background-color: #e5533b;
}

.survey-print-button {
    background-color: #1E90FF;
    color: white;
}

.survey-print-button:hover {
    background-color: #1c7ac8;
}

.survey-results-container {
    margin-top: 30px;
    overflow-x: auto;
}

.survey-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.survey-results-table th,
.survey-results-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.survey-results-table th {
    background-color: #f2f2f2;
    color: #333;
}

.survey-no-results,
.survey-instruction {
    font-size: 16px;
    color: #333;
    text-align: center;
}

@media print {
    .survey-form-container,
    .survey-new-query-button,
    .survey-print-button {
        display: none;
    }
}




