.englishAnswer-container {
    padding: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 280px;
    height: 348px;
    box-sizing: border-box;
    position: relative;
}

.englishAnswer-sentence {
    font-size: 12px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    width: 300px;
    height: 6px;
}

.englishAnswer-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 264px;
    height: 32px;
}

.englishAnswer-box {
    width: 50px;
    height: 22px;
    border: 2px solid #2196F3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.englishAnswer-box-fixed {
    color: #333;
    cursor: default;
}

.englishAnswer-result-container{
    width: 20px;
    height: 0px;
    position: absolute;
    left: 232px;
    top: 32px;
}

.englishAnswer-next-question-btn{
    padding: 0px 2px;
    font-size: 9px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 84%;
    bottom: 268px;
    transform: translateX(-50%);
    pointer-events: auto;
}

.englishAnswer-box-selected {
    border-color: #00ff15 !important;
    background-color: #f0f0f0;
}

.englishAnswer-options-container {
    position: relative;
    background-color: transparent;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    top: -20px;
    left: 60px;
}

.englishAnswer-option-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #2196F3;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    pointer-events: auto;
}

.englishAnswer-center-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #2196F3;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    pointer-events: auto;
    cursor: pointer;
}

.englishAnswer-submit-btn {
    padding: 6px 12px;
    font-size: 10px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.englishAnswer-gapfilling-submit-btn {
    padding: 0px 10px;
    font-size: 10px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 50%;
    bottom: 154px;
    transform: translateX(-50%);
    pointer-events: auto;
}

.englishAnswer-result-icon {
    display: inline-block;
    margin-left: 10px;
    font-size: 10px;
    font-weight: bold;
}

.englishAnswer-result-correct {
    color: #4CAF50;
}

.englishAnswer-result-wrong {
    color: #F44336;
}

.englishAnswer-translate-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.englishAnswer-translate-row {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.englishAnswer-chinese-box {
    width: 276px;
    padding: 4px 6px;
    border: 2px solid #2196F3;
    border-radius: 6px;
    font-size: 10px;
    color: #333;
    background-color: #fff;
    line-height: 1.4;
    min-height: 30px;
}

.englishAnswer-english-box {
    width: 276px;
    padding: 4px 6px;
    border: 2px solid #2196F3;
    border-radius: 6px;
    font-size: 10px;
    color: #333;
    background-color: #fff;
    line-height: 1.4;
    min-height: 30px;
}

.englishAnswer-english-box-hidden {
    display: none;
}

.englishAnswer-reference-btn {
    padding: 6px 12px;
    font-size: 10px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    pointer-events: auto;
}

.englishAnswer-input-box {
    width: 276px;
    padding: 4px 6px;
    border: 2px solid #2196F3;
    border-radius: 6px;
    font-size: 10px;
    color: #333;
    outline: none;
    min-height: 30px;
    pointer-events: auto;
    cursor: text;
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
}

.englishAnswer-record-btn {
    padding: 6px 12px;
    font-size: 10px;
    background-color: #FF9800;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    pointer-events: auto;
}

.englishAnswer-result-box {
    width: 276px;
    padding: 4px 6px;
    border: 2px solid #2196F3;
    border-radius: 6px;
    font-size: 10px;
    color: #333;
    background-color: #fff;
    line-height: 1.4;
    min-height: 30px;
}

.englishAnswer-result-box-hidden {
    display: none;
}

.englishAnswer-translate-next-btn{
    position: absolute;
    left: 356px;
    top: 2px;
    padding: 6px 12px;
    font-size: 10px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}