/* Container principal centralizado na tela */
.survey-container {
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Esconde o rádio padrão para usar o layout customizado */
.yes-no-group input[type="radio"],
.rating input[type="radio"] {
    display: none !important;
}

/* Estilo para Sim / Não */
.yes-no-group label {
    padding: 10px 24px;
    background: #edf2f7;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    font-weight: bold;
    transition: all 0.2s;
    display: inline-block;
    border: 1px solid #cbd5e0;
}

.yes-no-group input[type="radio"]:checked+label {
    background: #2b6cb0 !important;
    color: #fff !important;
    border-color: #2b6cb0;
}

/* Estilo para Avaliação por Notas (0 a 5) */
.rating label {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    background: #edf2f7;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 4px;
    font-weight: bold;
    transition: all 0.2s;
    border: 1px solid #cbd5e0;
}

.rating input[type="radio"]:checked+label {
    background: #dd6b20 !important;
    color: #fff !important;
    border-color: #dd6b20;
    transform: scale(1.1);
}

/* Botão de Envio Customizado */
.btn-submit-survey {
    width: 100%;
    background: #2b6cb0;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 20px;
    transition: background 0.2s;
}

.btn-submit-survey:hover {
    background: #2c5282;
}

/* Adicione isso no final do seu arquivo style_survey_hotspot.css */
body.page-external-lgpd #content {
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
}

body.page-external-lgpd #sidebar {
    display: none !important;
}