.match-item-widget .matched-sentences-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    border: 2px solid #c36;
    min-height: 40px;
}

.match-item-widget .matched-sentences-container .matched-sentence-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 2px solid #c36;
    border-radius: 15px;
    background: #f9f9f9;
    gap: 10px;
}

.match-item-widget .matched-sentences-container .sentence {
    font-size: 16px;
    color: #000;
}

.match-item-widget .matched-sentences-container .answer-placeholder {
    width: 150px;
    height: 40px;
    border: 2px dashed #c36;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color, #555);
    background-color: #fff;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.match-item-widget .answers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border: 2px solid #c36;
    border-radius: 15px;
    min-height: 40px;
}

.match-item-widget .answers-container .answer-cart {
    background: #fff;
    padding: 15px;
    color: #000;
    border: 2px solid #c36;
    cursor: pointer;
    border-radius: 15px;
    text-align: center;
    width: auto;
}

@media only screen and (max-width: 1024px) {
    .match-item-widget .matched-sentences-container .matched-sentence-box {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .match-item-widget .answers-container,
    .match-item-widget .matched-sentences-container {
        padding: 5px;
    }
    .match-item-widget .matched-sentences-container .matched-sentence-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .match-item-widget .matched-sentences-container .answer-placeholder {
        width: 100%;
        min-height: 40px;
        margin-top: 10px;
    }
}