#quizForm {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#quizForm h3 {
    margin-bottom: 15px;
}

#quizForm p {
    margin: 10px 0;
	padding: 0 !important;
}

#quizForm label {
    display: block;
    margin-bottom: 5px;
}

#quizForm button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
	margin: 20px 0;
}

#quizForm button:hover {
    background-color: #45a049;
}

#progressContainer {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-top: 20px;
}

#progressBar {
    width: 0;
    height: 20px;
    background-color: #4CAF50;
    border-radius: 5px;
}

#result {
    margin-top: 20px;
    padding: 20px;
    background-color: #e9ecef;
    border-left: 4px solid #007bff;
    border-radius: 5px;
}
