/*
Theme Name:   EduBlink Child
Theme URI:    https://demo.edublink.co/
Author:       DevsBlink
Author URI:   https://themeforest.net/user/devsblink/portfolio
Description:  EduBlink Child Theme For LMS and Education Purpose.
Version:      1.0.0
Template:     edublink
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain:  edublink-child
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
*/

/* ================================================
   Fix: Tutor LMS Quiz Answer - Radio Button Spacing
   Problem: .tutor-form-check-input has position:absolute
   which pulls the radio out of the flex row and places
   it in the card corner, making text appear far from circle.
   ================================================ */

/* Bring the radio/checkbox back into the flex row */
.quiz-question-ans-choice-area .tutor-d-flex .tutor-form-check-input {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    flex-shrink: 0;
}

/* Ensure consistent gap between circle and answer text (RTL & LTR) */
.quiz-question-ans-choice-area .tutor-d-flex .tutor-ml-8 {
    margin-right: 10px !important;
    margin-left: 0 !important;
}
