/* ==== Suche auf der Sitemap-Seite ==== */
#searchInput {
    width: 50%;
    max-width: 800px;
    min-width: 300px;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 9px;
    font-size: 16px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
#searchInput:focus {
    border-color: #A0A0A0;  
    outline: none;  
}
#searchResults {
    list-style: none;
    padding: 0;
}
#searchResults li {
    padding: 10px;
    border-bottom: 1px dotted #ccc;
}
#searchResults a, #searchResults a:visited {
    text-decoration: none;
    color: var(--LinkFarbe);
    font-size: 18px;
    font-weight: bold;
}
#searchResults a:hover {
    text-decoration: underline;
}
.highlight {
    background-color: yellow;
    font-weight: bold;
}
.snippet {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 5px;
}
.breadcrumb {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
    display: block;
}
#searchCount {
    font-size: 14px;
    color: #555;
}
#searchStatus {
    color: #888;
}
.rotating {
    display: inline-block;
    font-size: 18px;
    animation: rotate 2s linear infinite;
}
img.rotate {
    display: block;
    animation: rotate 0.8s linear infinite;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ==== Sitemap-Tabellen & Label-Container ==== */
#label-container {
    margin: -1.2em 0 0 0;
    padding: 0;
}
#label-container h3 {
    font-size: 1em;
    margin: 0 0 -12px 0;
}
#label-container h3::first-letter {
    font-size: 1.4em;
}
#label-container p {
    padding: 0 0 0 0.4em;
    margin: 0.5em 0 0 0;
    line-height: 1.2;
}
#label-container a {
    text-decoration: none;
}
#label-container h3 a {
    color: black;
}
#label-container a:hover {
    text-decoration: underline;
}
.post-archive p {
    line-height: 1.2;
}
.post-archive div {
    margin: -1em 0 2em 0.7em;
}
.sitemap-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    /* border-top: 1px solid #E8E8E8; */
    border-bottom: 1px solid #E8E8E8;
}
.sitemap-table td {
    vertical-align: top;
    padding-right: 10px;
    padding-bottom: 16px;
}
.sitemap-table h2 {
    margin: 0;
}
.sitemap-table p {
    font-size: 80%;
}
#SitemapContainer p {
    clear: left;
    padding-left: 36px;
    line-height: 1.2;
    margin-top: -12px;
}
#SitemapContainer div.sitemap-item {
    margin-top: 1.5em;
}
#SitemapContainer img {
    width: 30px;
    float: left;
    margin-left: -36px;
    margin-right: 6px;
    margin-bottom: 1px;
}

/* ==== "Letzte Aktualisierungen" ==== */
.recent-update-item {
    margin-bottom: 0.8em;
    line-height: 1.3;
}
.recent-update-item img {
    width: 30px;
    float: left;
    margin-right: 6px;
}
.recent-update-item h5 {
    margin: 0;
    line-height: 1.2;
    font-weight: 400;
}
.recent-update-item span {
    display: inline-block;
    color: var(--CIColorSignal);
    font-family: var(--FontSans);
    font-size: 80%;
}
