.test {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 3.5vh;
    border: solid 1.5px #b9b9b9;
    border-radius: 12px;
}

.questions {
    width: 50%;
    background-color: #F9F9F9;
    padding: 14px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.question-number {
    font-weight: 600;
    font-size: 1.8vh;
    margin-bottom: 1vh;
}

.question {
    font-size: 1.6vh;
}

.answer {
    height: auto;
    width: 50%;
    background-color: #F9F9F9;
    padding: 10px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

ul {
    padding: 0;
    margin: 0;
}

ul li{
    list-style-type: none;
    font-size: 1.6vh;
}

li input {
    position: relative;
    top: 2px;
    height: 15px;
    width: 15px;
    margin-right: 10px;
}

.text {
    width: 350px;
    height: 24px;
    font-size: 1.6vh;
}

.text::-webkit-input-placeholder {
    font-size: 1.6vh;
}

.test-correct {
    border: 2px solid #70B96E;
}

.test-wrong {
    border: 2px solid #BF6868;
}

.red-cell {
    color: #E57373; /* Красный цвет */
}

/* Стили для ячеек с желтым фоном */
.yellow-cell {
    color: #FFB74D; /* Желтый цвет */
}

/* Стили для ячеек с светло-зеленым фоном */
.light-green-cell {
    color: #7CB36C; /* Светло-зеленый цвет */
}

/* Стили для ячеек с темно-зеленым фоном */
.dark-green-cell {
    color: #388E3C; /* Темно-зеленый цвет */
    font-weight: bold;
}