/* General styling */
/*p, h2, span, body, h1, b, div, a, strong, label{
font-family: Arial, sans-serif !important; 
}*/
.fragrance-form-field {
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.fragrance-question p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* Style the MCQ options */
.mcq-option {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    background-color: #fff;
}

/* Hide the default radio button */
.mcq-option input[type="radio"] {
    display: none;
}

/* Style the checkmark */
.mcq-option .checkmark {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    margin-right: 10px;
    transition: 0.3s;
}

/* Add hover effect */
.mcq-option:hover .checkmark {
    border-color: #007bff;
}

/* Add tick mark when selected */
.mcq-option input[type="radio"]:checked + .checkmark::before {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #fff;
}

.mcq-option input[type="radio"]:checked + .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

/* Style the option text */
.mcq-option .option-text {
    font-size: 1rem;
    color: #555;
}

/* Selected option text styling */
.mcq-option input[type="radio"]:checked ~ .option-text {
    font-weight: bold;
    color: #007bff;
}
