/* General Quiz Container */
.llq-container {
    font-family: "Arial", sans-serif;
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Quiz Header */
.llq-container h2 {
    text-align: center;
    color: #333;
}

.llq-container p {
    text-align: center;
    font-size: 16px;
    color: #555;
}

/* Question Styling */
#llq-question-container {
    margin: 20px 0;
    padding: 15px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Options Styling */
#llq-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.llq-option {
    display: block;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
	color:red;
}

.llq-option:hover {
    background: #e3f2fd;
	color:red;
}

.llq-option.selected {
    background: #2196F3;
    color: white;
    border-color: #1976D2;
}

/* Next Button */
#llq-next {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

#llq-next:hover {
    background: #388E3C;
}

/* Progress Bar */
#llq-progress {
    margin-top: 20px;
    text-align: center;
}

#llq-progress-text {
    font-size: 14px;
    color: #666;
}

#llq-progress-bar {
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

#llq-progress-bar::before {
    content: "";
    display: block;
    height: 100%;
    width: 0%;
    background: #4CAF50;
    transition: width 0.4s ease;
}

/* Result Display */
#llq-result {
    text-align: center;
    padding: 20px;
    background: #fff3e0;
    border-radius: 6px;
    margin-top: 20px;
}

#llq-result h3 {
    color: #D84315;
}

#llq-result p {
    font-size: 18px;
    color: #333;
}
