/* General Styles */

.quiz-title {
    text-align: center;
    font-size: 28px;
    color: #ff6f61;
    margin-bottom: 20px;
    font-weight: bold;
    padding-bottom: 20px;

}

/* Container Styling */
#input-quiz-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    width: 80%;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.quiz-question {
    margin: 15px 0;
    font-size: 18px;
    text-align: left;
}

.quiz-question label {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s;
}

.quiz-question input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border-radius: 0px;
    border: 4px solid #006EFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s;
}
.quiz-question input:hover {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border-radius: 0px;
    border: 4px solid #008EFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s;
}


.quiz-submit-btn {
    background-color: #008EFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
    width: 100%;
}

.quiz-submit-btn:hover {
    background-color: #006EFF;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

.quiz-result {
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #004EFF;
}

.quiz-result ul {
    list-style-type: none;
    padding-left: 0;
}

.quiz-result ul li {
    font-size: 16px;
    margin: 5px 0;
}
