.app-shell .meeting-cancel-scope {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.app-shell .meeting-cancel-scope legend {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
}

.app-shell .meeting-cancel-scope label {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #f7f9f6;
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
}

.app-shell .meeting-cancel-scope label:has(input:checked) {
    border-color: #8f2f27;
    background: #fff2ef;
}

.app-shell .meeting-cancel-scope input {
    width: 16px;
    height: 16px;
    margin: 0;
}

@media(max-width: 520px) {
    .app-shell .meeting-cancel-scope {
        grid-template-columns: 1fr;
    }

    .app-shell .meeting-cancel-scope legend {
        grid-column: auto;
    }
}
