#smq-quiz {
    max-width: 600px;
    margin: 0 auto;
}

#smq-question-container h3 {
    margin: 0 0 10px;
}

#smq-question-container p {
    margin: 0 0 20px;
}

.smq-options {
    display: inline-block; /* Display options horizontally */
    margin-right: 10px; /* Adjust spacing between options */
}
#smq-question-container h3{
    font-size: 32px;
}
.options-container {
    display: inline-flex;
    flex-wrap: wrap;
}

.option-item {
    margin-right: 10px; /* Adjust the spacing as needed */
    margin-bottom: 10px; /* Adjust the spacing as needed */
    display: flex;
    align-items: center;
}

.smq-option-button {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.smq-option-button:hover {
    background-color: #005177;
}

#smq-next-button,
#smq-submit-button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#smq-next-button:hover,
#smq-submit-button:hover {
    background-color: #005177;
}

