html, body {
    height: 100%;
    margin: 0;
}

/* Only affects the container class */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 2%;
    padding-top: 2%;
}

.questionnaire-page h2 {
    margin-bottom: 10px;
}

#questionnaireForm .contact-btn {
    padding: 5px 20px;
}

canvas {
    width: 600px;
    height: 600px;
}

#chart-container {
    display: none; /* Hide chart initially */
}

#questionbox {
    text-align: left;
}

.radio-group {
    margin-left: 50px;
}


@media (max-width: 600px){
    canvas{
        width:90%;
        height:90%;
    }
}