body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    overflow: auto;  
}

h2 {
    margin-bottom: 8px;
}

.questionnaire {
    width: 100%;
    background-color: #ffffff;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: auto
}

.question {
    margin-bottom: 16px;
}

.question-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
    width: 100%; 
}

.question-number {
    background-color: rgba(73, 161, 255, 0.2);
    color: #1D68F3;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    width: fit-content;
}

.question-description {
    font-weight: normal;
}

.question-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1E1E21;
    margin-top: 8px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.option input[type="radio"] {
    width: 20px;
    height: 20px;
    background: #818386;
    margin-right: 8px;
    gap: 0px;
    border-width: thick;
    margin-top: 0px;
}

.option label {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.012em;
    text-align: left;
    color: #59585A;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

input[type="text"]{
    width: 100%;
    height: 48px;
    padding: 12px;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid #D2D3D4;
    background-color: #FFFFFF;
    opacity: 1;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.time-input {
    display: flex;
    align-items: center;
}

.time-input input {
    width: 100px;  /* Adjust this value as needed */
    margin-right: 10px;
}

.form-input {
    /* Add any styles that are common to your text input boxes */
    /* width: 100%; */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

img {
    max-width: 100%;
}

.ipaq-section {
    margin-top: 36px;
}

.ipaq-part {
    margin-bottom: 36px;
}