/* Styly se načítají jen u soupisu; typografii přebíráme ze šablony webu. */
.catalogue-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.catalogue-controls[hidden] { display: none; }
.catalogue-controls button {
    border: 1px solid #ccc7ba;
    border-radius: 2px;
    padding: 6px 10px;
    background: #f4f3ef;
    color: #3b4c56;
    font: inherit;
    font-size: 13px;
    line-height: 20px;
    cursor: pointer;
}
.catalogue-controls button:hover { background: #eae6db; }
.catalogue-controls button:focus-visible { outline: 2px solid #90784d; outline-offset: 2px; }
.catalogue details { margin: 0 0 8px; scroll-margin-top: 90px; }
.catalogue details > summary {
    position: relative;
    padding: 3px 0 3px 28px;
    color: #3b4c56;
    line-height: 25px;
    cursor: pointer;
    list-style: none;
}
.catalogue details > summary::-webkit-details-marker { display: none; }
.catalogue details > summary::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 1px solid #aeb3b5;
    border-radius: 2px;
    line-height: 16px;
    text-align: center;
}
.catalogue details[open] > summary::before { content: "−"; }
.catalogue details > summary:focus-visible { outline: 2px solid #90784d; outline-offset: 2px; }
/* Druhá úroveň stromu používá stejné odsazení jako seznam jednotlivých děl. */
.catalogue-year-categories,
.catalogue-register-subjects {
    border-left: 1px solid #d9dadb;
    margin: 0 0 16px 9px;
    padding: 0 0 0 18px;
}
.catalogue-note { margin: 8px 0; font-size: 13px; }
.catalogue-missing { color: #76532c; }
.catalogue-works {
    list-style: none;
    border-left: 1px solid #d9dadb;
    margin: 0 0 16px 9px;
    padding: 0 0 0 18px;
}
.catalogue-works > li {
    position: relative;
    padding: 4px 0;
    overflow-wrap: anywhere;
    scroll-margin-top: 90px;
}
.catalogue-works > li::before {
    content: "";
    position: absolute;
    top: 16px;
    left: -18px;
    width: 12px;
    border-bottom: 1px dashed #d9dadb;
}
.catalogue-works > li:target { background: #f8f3e8; }
