.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.32); /* #00000052*/
}

.modal-content {
    background-color: rgba(200, 200, 200, 1); /* #C8C8C8FF */
    color: rgb(102, 102, 102); /* #666 = 'dark': var(--color-text); */
    margin: 10% auto;
    padding: 1rem;
    border: 2px solid rgba(200, 200, 200, 0.48); /* #C8C8C87A */
    width: max-content;
}

.input-group {
    padding-bottom: 3rem;
}

code {
    font-family: monospace;
    /* または、具体的なフォント名を指定 */
    /* font-family: Courier New, Courier, monospace; */
}

.option-applied {
    color: rgb(51, 51, 51); /* #333 = 'dark': var(--color-text-input) */
}

.arrow {
    display: block;
    padding-left: 1rem;
    padding-top: .5rem;
    color: rgba(128, 128, 128); /* #808080 */
}

.modal-content>h2 {
    font-size: 1rem;
    padding-bottom: 2rem;
}


.modal-content .example {
    padding-top: 0.5rem;
    padding-left: 1.5rem;
}

/* button#close-svg-opt-modal { */
button#reset-settings {
    width: 70%;
    padding: 0.5rem 0;
}

div#reset-button-box {
    text-align: center;
}


@media screen and (max-width: 512px) {
    .modal-content {
        padding: 1rem;
        width: 90%;
    }
    .modal-content fieldset {
        margin: 0;
    }
    .input-group {
        padding-bottom: 2rem;
    }
}