#timer {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0f1e5a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.btn-back {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0f1e5a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    }
.btn-back:hover {
    background-color: #cc0000;
    }
.quiz-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0;
    }
.quiz-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    width: 300px;
    background-color: #ffffff;
    transition: transform 0.2s ease;
    }
.quiz-card:hover {
    transform: translateY(-5px);
    }
.quiz-title {
    font-size: 1.2em;
    margin-bottom: 5px;
    }
.quiz-button {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    }
.quiz-button:hover {
    background-color: #0056b3;
    }
.question-card {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    }
.question-title {
    margin-bottom: 15px;
   font-size: 28px;
   font-weight: bold;
   text-align: left;
   margin: auto;
   padding: 0 2%;
   word-wrap: break-word;
   overflow-wrap: break-word;
   word-break: break-all;
   max-width: 100%;
   display: block;

    }
.choice-list {
    list-style: none;
    padding: 0;
    }
.choice-item {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    }
.choice-item:hover {
    background-color: #efefef;
    }
.quizForm {
    padding-bottom: 5px;
    position: relative;
    margin: 20px;
    height: auto;
    }
.submit-button {
    position: static;
    margin-top: 10px;
    bottom: 20px;
    left: 10px;
    right: 10px;
    width: 100%;
    padding: 15px 0;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    }
.timer {
    position: fixed;
    bottom: 70px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    }
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    }
.countdown-number {
    font-size: 120px;
    color: #000;
    }
.choice-item {
    margin: 10px 0;
    padding: 0;
    border-radius: 5px;
    cursor: pointer;
    }

.choice-item label {
    display: block;
    background: #f7f7f7;
    padding: 10px 15px;
    border: 2px solid #d1d1d1;
    border-radius: 5px;
    margin-bottom: 0;
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
    }
.choice-item input[type="radio"] {
opacity: 0;
    position: absolute;
    left: -9999px;
    }
.choice-item:hover label {
    background: #e9e9e9;
    border-color: #c1c1c1;
    }
.choice-item input[type="radio"]:checked + label {
    background-color: #22215a;
    border-color: #3e3d5e;
    color: white;
    }
.choice-item:last-child {
    margin-bottom: 5px;
    }
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    }
.checkbox-group label {
    margin: 0;
    display: flex;
    align-items: center;
    }
.checkbox-group input[type="checkbox"] {
    margin-right: 5px;
accent-color: #0062cc;
   }
