summary {
    cursor: pointer;
}

.snippet {
    border-color: #aaa;
    border-style: dashed;
}

#filingtitle-shortcuts-container {
    border: 1px solid #bcc;
    border-radius: 4px;
    padding: 0.5ch;
    width: 75ch;
    flex-wrap: wrap;
}

.output {
    margin-top: 1rem;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 0.25ch;
    /* font-family: 'Courier New', Courier, monospace; */
}

input, .output-text {
    font-family: monospace;
}

.output-text {
    font-size: 1.15em;
}

.tip {
    font-size: 0.75rem;
    color: gray;
}

.copied-msg {
    opacity: 0%;
    transition: 0.625s;
    background-color: rgba(0,0,0,0.75);
    color: white;
    width: fit-content;
    border-radius: 0.5ch;
    padding: 0.25ch 0.5ch;
    margin-left: 1ch;
}

.copied-msg.show {
    transition: 0.0625s;
    opacity: 100%;
}

.pill {
    border-radius: 999px;
    background-color: #ddd;
    overflow: hidden;
    cursor: default;
    padding: 2px;
    font-size: small;
    transition: 0.325s;
    white-space: nowrap;
}
.pill:hover {
    background-color: #bbb;
}
.pill > * {
    display: inline-block;
    height: 100%;
    padding: 0.25ch 0.75ch;
    line-height: 1rem;
}
.pill > .field {
    transition: 0.325s ease-in-out;
    background-color: transparent;
    border-right: 1px solid #444;
    color: #444;
    border-radius: 1rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.pill > .field:hover {
    background-color: #ddd;
    border-right-color: transparent;
    border-radius: 1rem;
}
.pill > .value {
    background-color: transparent;
    transition: color 0.35s, background-color 1s;
    border-radius: 999px;
    margin-inline: 0.5ch;
    padding-inline: 1ch;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: clip;
    max-width: 20ch;
}
.pill > .value.empty {
    color: #888;
}
.pill > .value:not(.empty) {
    /* color: #1F618D; */
    color: black;
    background-color: #bbb;
}
.pill > .value.glow {
    background-color:  lightblue;
    transition: color 0.35s, background-color 0.1s;
}

.chip {
    background-color: #ddd;
    padding: 0.35ch 1ch 0.35ch 0.5ch;
    border-radius: 0.5ch;
}
.chip > div {
    pointer-events: none;
}

.chip:hover {
    background-color: #ccc;
}

.non-conforming {
    text-decoration: wavy underline blue 1px;
}

#original-container {
    max-height: 150px;
    overflow-y: hidden;
    transition: 0.5s ease;
    margin-inline: 3px;
    padding-inline: 3px;
}

#original-container.closed {
    max-height: 0;
}

#filingtitle-shortcuts-container {
    flex-wrap: nowrap;
    max-height: 250px;
    overflow: hidden;
    transition: 0.5s ease;
    padding: 1ch;
    border-color: #ccc;
}

#filingtitle-shortcuts-container.closed {
    max-height: 0;
    padding: 0;
    gap: 0;
    border-color: transparent;
}

#note-list {
    gap: 0;
}

#note-list > li {
    background-color: transparent;
    padding: 0.5ch;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

#note-list > li:hover {
    background-color: #ddd;
}
