/* Global styling for the quiz */
#mbti_test_form {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for each question */
#mbti_test_form p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Styling for the options */
#mbti_test_form label {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: block;
    cursor: pointer;
}

#mbti_test_form input[type="radio"] {
    margin-right: 10px;
    vertical-align: middle;
}

/* Submit button styling */
#mbti_test_form button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 20px;
}

#mbti_test_form button:hover {
    background-color: #0056b3;
}

/* Styling for the result section */
#result {
    background-color: #e6f7ff;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    text-align: center;
}

/* Related blogs section */
#result a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
}

#result a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #mbti_test_form {
        width: 100%;
        padding: 15px;
    }

    #mbti_test_form button {
        width: auto;
    }
}
