.page.addition-page{
    padding: 10mm;
}

.page.addition-page .content-area{
    margin: 0;
}

.content-area{
    padding: 0 3mm;
    border: 1mm solid #9CDDF5;

    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
    flex-grow: 1;
    margin-bottom: 10mm;
}

.content-area.inner-text {
    padding: 5mm;
    justify-content: start;
}

.note-area{
    background-image: linear-gradient(#ffffff 97%, #9CDDF5 0 3%);
    background-size: 95% 10mm;
    background-repeat: repeat-y;
    background-position: center top;
}

.option-button-off{
    opacity: 0.5;
    pointer-events: none;
    user-select: none; /* 텍스트 선택 차단 */
}

pre{
    margin: 0;
}

.input-content-area{
    border: 1mm solid #9CDDF5;
    width: 100%;
    /* height: 51mm; */
    /* max-height: 82%; */
    /* max-height: 915px; */
    overflow: hidden;

    height: fit-content;
    display: flex;
    flex-direction: column;
}

.input-content-area .input-content-title{
    font-family: 'pretendard';
    font-weight: bold;

    background-color: #9CDDF5;
    width: 100%;
    /* height: 100%; */
    padding: 0 2mm;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.input-content-area .input-content-title h6{
    color: #535251;
}

.input-content-area .input-content-wrap{
    flex-grow: 1;
    min-height: 22mm;
    counter-reset: list-counter;
    padding: 3mm;
}

.input-content-wrap .input-content-box p{
    margin: 0;
    font-size: 0.8rem;
}

.input-content-wrap .input-content-box .number-text{
    width: 5mm;
    text-align: end;
    flex: 1;
}
.input-content-wrap .input-content-box .word-text{
    flex: 2;
}

.input-content-wrap .input-content-box .mean-text{
    flex: 10;
    line-height: normal;
}


.input-content-wrap .input-content-box > li {
    height: 8mm;
    padding: 0 1mm;

    display: flex;
    align-items: center;
    gap: 5px;
    
    color: black;
}

.input-content-area .input-content-content-wrap{
    width: 100%;
    height: 100%;
}

.words-content-area .content-text-wrap{
    padding: 5mm 0px;

    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 10px;

    border-bottom: 0.5mm solid #9CDDF5;
}

.words-content-area .content-text-wrap:last-child{
    border: none;
}

.words-content-area .word-number-box{
    width: 25px;
    height: 25px;
    background-color: #9CDDF5;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.2rem;
    font-weight: bold;
    color: black;
}
.words-content-area .content-word-text{
    color: black;
}

.conditions-text-wrap{
    font-family: 'pretendard';
    color: black;
    font-weight: 500;
    
    white-space: pre-line;
}


@media print {
    .no-print{
        display: none;
    }
}