#quiz-container {
       font-family: "Ibrand", Sans-serif;
    padding: 20px;
/*     max-width: 600px; */
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.question {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.option-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}
.question p {
	font-size: 20px;
    color: #223653;
	font-weight: 300;
}
.quiz-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
	#quiz-container input[type="radio"]:checked + label .option-letter {
    background: #fdbd0a;
    color: #000000;

}
.option-letter {
    font-weight: 400;
    padding: 5px 10px;
/*     border: 1px solid #007bff; */
    border-radius: 5px;
    background: #f0f8ff;
}


input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #007bff;
}
.test-button:hover{
	background-color:#5536F2;
	color:#fff;
}
.test-button:focus:not(:focus-visible) {
    background: #5536f2;
}
/* #quiz-container input[type="radio"]:checked + label .option-letter {
    background: #007bff !important;
    color: white;
} */

.error-message {
    color: red;
    font-size: 14px;
    margin-left: 10px;
    display: none;
	  font-weight: 300;
}

.answer-result {
    font-weight: bold;
    margin-left: 10px;
    display: block;
    margin-top: 5px;
	 font-weight: 300;
}

.correct {
    color: green;
}

.wrong {
    color: red;
}

button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    display: block;
    margin-top: 15px;
}

button:hover {
    background: #0056b3;
}

#quiz-result {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 5px;
    font-weight: bold;
}

table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
}

td {
    padding: 5px;
    border: 1px solid #ddd;
    text-align: center;
}
.dwn-btn{
	padding: 14px 50px !important;
	background-color:#50CC78;
}
.test-button{
	background-color: var(--e-global-color-accent);
    fill: #000000 !important;
    color: #000000 !important;
    border-radius: 98px 98px 98px 98px;
    padding: 10px 0px;
	 width: 40%;
	border:none;
}
.test-button:hover{
	background-color:#5536F2;
	color:#fff;
}
.test-button:focus:not(:focus-visible) {
    background: #5536f2;
}

@media (max-width:680px){
	.dwn-btn{
	padding: 14px 20px !important;
}
}