.method {
    border: 2px solid #ccc;
    padding: 1rem 1rem;
    min-height: 7rem;
    margin-bottom: 1.5rem;
    border-radius: 0.2rem;
}
.method.selected,
.method:hover {
    border-color: var(--primary-bg-color);
}
details[disabled] summary,
details.disabled summary {
    pointer-events: none;
    user-select: none;
}
.method summary input {
    margin-left: -0.25rem;
    margin-right: 0.25rem;
}

.method summary .name {
    font-weight: bold;
    font-size: 0.9rem;
}

.method .description {
    display: block;
    color: #888;
    text-align: justify;
    width: 100%;
    margin-top: 0.5rem;
}
.method .description img {
    float: right;
    width: 50px;
    height: 50px;
    margin-left: 1rem;
    shape-outside: inset(60px 60px 50px 50px);
}

.method:not(.split-option) details summary::marker {
    content: '';
    display: none
}
.method .split {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
}
.method .split li {
    list-style-type: none;
    margin-top: 1rem;
    padding: 1rem 1rem;
    border: 1px solid transparent;
}
.method .split li.selected,
.method .split li:hover {
    border: 1px solid var(--primary-bg-color);
    border-radius: 0.2rem;
}
.method .split input[disabled] + .x {
    color: #aaa;
}
