@charset "utf-8";

/* Container da pesquisa detalhada:
   largura máxima de 900px (centralizado) */
.pdsp-pesquisa-satisfacao {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Duas colunas para CPF (300px) e texto (600px) */
.pdsp-cpf-row {
    display: flex;
    margin: 20px auto;
    max-width: 900px;
    text-align: left;
}

.pdsp-cpf-col1 {
    width: 300px;
    margin-right: 20px;
}

.pdsp-cpf-col2 {
    width: 600px;
    font-size: 0.9em;
    text-align: justify;
}

/* Tabela com largura fixa de 900px */
.pdsp-survey-table {
    width: 900px;
    margin: 20px auto;
    border-collapse: collapse;
}

/* Primeira coluna (perguntas) mais larga */
.pdsp-survey-table td:first-child,
.pdsp-survey-table th:first-child {
    width: 500px;
    text-align: left;
}

/* As outras 5 colunas => 80px cada = 400px */
.pdsp-survey-table td:nth-child(n+2),
.pdsp-survey-table th:nth-child(n+2) {
    width: 80px;
    text-align: center;
}

/* Borda e espaçamento das células */
.pdsp-survey-table th,
.pdsp-survey-table td {
    border: 1px solid #ccc;
    padding: 8px;
    vertical-align: middle;
}

/* Botões da pesquisa na tabela */
.pdsp-survey-table button.pdsp-option {
    background: none;
    border: none;
    cursor: pointer;
}

/* Imagens com 30x30 */
.pdsp-survey-table img {
    width: 30px;
    height: 30px;
    display: block;
    margin: auto;
}

/* Espaço extra para a seção de resultados (gráfico, etc.) */
.pdsp-results {
    margin-top: 30px;
}

/* Botão para gerar PDF e Enviar Pesquisa */
.pdsp-pdf-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none !important;
    border-radius: 4px;
    border: 1px solid #005177;
    font-weight: bold;
    cursor: pointer;
}

.pdsp-pdf-button:hover {
    background-color: #005177;
    color: #fff;
    text-decoration: none !important;
}
