body {
    background-color: #f0f2f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.container{
    width: 100%;
}
.quiz-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    width: 100%;
    margin: auto;
}

.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.question {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.optionsContainer{
    display: flex;
    justify-content: center;
}
.options {
    display: grid;
    gap: 10px;
    width: 70%;
    padding: 0 5% 0 5%;
}

.option {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    background-color: #e9ecef;
}

.option.selected {
    background-color: #cfe2ff;
    border-color: #0d6efd;
}

.option.correct {
    background-color: #d4edda;
    border-color: #28a745;
}

.option.incorrect {
    background-color: #f8d7da;
    border-color: #dc3545;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.timer {
    font-size: 1.2rem;
    font-weight: bold;
}
.timer-box{
    display: flex;
    justify-content: center;
    width: 100%;
}
.results {
    text-align: center;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.score {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.scoreName {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}



.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-group button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}
.form-group button:hover {
    background-color: #0056b3;
}
.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Adjust based on your container width */
    padding: 10px; /* Optional padding */
}
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.next {
    margin-left: auto; /* Push the Next button to the right */
}