body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 90%;
    max-width: 570px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

p {
    font-size:20px;
    font-weight: 600;
}


#progressBar {
    font-size: 20px;
    width: 0%;
    height: 30px;
    background-color: #4caf50;
    border-radius: 5px;
    text-align: center;
    line-height: 20px;
    color: white;
    margin-bottom: 5px;
    align-content: center;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

.progress {
    background-color: #76c7c0;
    height: 100%;
    width: 0;
    transition: width 0.3s;
}

#questionContainer div {
    margin-bottom: 10px;
}

label {
    display: block;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

input[type="radio"] {
    margin-right: 10px;
}

button {
    background-color: #76c7c0;
    color: #fff;
    border: none;
    padding: 10px 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 22px;
    margin: 20px;
}

button:hover {
    background-color: #5aa8a3;
}

#resultChart {
    display: none;
    margin: 0 auto;
}

p.texto {
    background-color: antiquewhite;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}
/* Estilo para ocultar o botão imprimir no mobile */
@media (max-width: 768px) {
    #printButton {
        display: none; /* Oculta o botão no mobile */
    }
}

/* Exibir o botão de impressão apenas em desktops */
@media (min-width: 769px) {
    #printButton {
        display: inline-block; /* Exibe o botão no desktop */
    }
}
