.vst-header-global-stats,
.vst-header-member-panel {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1c2b31;
    box-sizing: border-box;
}

.vst-header-global-stats *,
.vst-header-member-panel *,
.vst-header-global-stats *:before,
.vst-header-member-panel *:before,
.vst-header-global-stats *:after,
.vst-header-member-panel *:after {
    box-sizing: border-box;
}

/* =========================
   Zentrale Statusleiste
   ========================= */

.vst-header-global-stats {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: calc(100% - 40px);
    margin: 14px auto 20px auto;
    padding: 10px 20px;

    border: 1px solid rgba(28, 43, 49, 0.24);
    background:
        linear-gradient(180deg, #fbfaf7 0%, #ece8df 100%);

    box-shadow:
        0 14px 30px rgba(28, 43, 49, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.vst-header-global-stats:before,
.vst-header-global-stats:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(28, 43, 49, 0) 0%,
        rgba(28, 43, 49, 0.36) 100%
    );
    transform: translateY(-50%);
    pointer-events: none;
}

.vst-header-global-stats:before {
    right: 100%;
    margin-right: 12px;
}

.vst-header-global-stats:after {
    left: 100%;
    margin-left: 12px;
    transform: translateY(-50%) rotate(180deg);
}

.vst-header-global-item {
    white-space: nowrap;
    color: rgba(28, 43, 49, 0.74);
}

.vst-header-global-item strong {
    color: #1c2b31;
    font-weight: normal;
    letter-spacing: .14em;
}

.vst-header-global-sep,
.vst-member-scenes-dot {
    color: rgba(28, 43, 49, 0.45);
    opacity: .9;
    font-size: 10px;
    line-height: 1;
}

/* =========================
   Dropdown im Header
   ========================= */

.vst-header-member-panel {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    position: relative;
    z-index: 50;
}

.vst-header-member-details {
    position: relative;
}

.vst-header-member-summary {
    list-style: none;
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px;

    border: 1px solid rgba(28, 43, 49, 0.28);
    background:
        linear-gradient(180deg, #1c2b31 0%, #142025 100%);

    color: #f7f2e8;
    letter-spacing: .12em;
    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

.vst-header-member-summary::-webkit-details-marker {
    display: none;
}

.vst-header-member-summary:hover,
.vst-header-member-details[open] .vst-header-member-summary {
    border-color: rgba(28, 43, 49, 0.52);
    color: #ffffff;
    box-shadow:
        0 8px 18px rgba(28, 43, 49, 0.16),
        inset 0 0 18px rgba(255, 255, 255, 0.06);
}

.vst-header-status-count {
    color: #ffffff;
}

/* =========================
   Dropdownbox
   ========================= */

.vst-header-member-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 370px;
    max-width: 440px;
    padding: 16px;

    border: 1px solid rgba(28, 43, 49, 0.24);
    border-top: 3px solid #1c2b31;

    background:
        linear-gradient(180deg, #fbfaf7 0%, #ece8df 100%);

    box-shadow:
        0 18px 38px rgba(28, 43, 49, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.70);
}

.vst-header-member-title {
    margin-bottom: 10px;
    padding-bottom: 8px;

    color: #1c2b31;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;

    border-bottom: 1px solid rgba(28, 43, 49, 0.16);
}

.vst-header-member-linkrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;

    margin-bottom: 14px;
    padding: 9px 11px;

    border: 1px solid rgba(28, 43, 49, 0.10);
    background: rgba(255, 255, 255, 0.38);

    color: rgba(28, 43, 49, 0.58);
    font-size: 10px;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.vst-header-member-linkrow a {
    color: #1c2b31;
    text-decoration: none;
}

.vst-header-member-linkrow a:hover {
    color: #000;
    text-decoration: none;
}

/* =========================
   Eintragsliste
   ========================= */

.vst-header-member-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vst-member-scenes-item {
    position: relative;
    padding: 11px 13px 11px 15px;

    border: 1px solid rgba(28, 43, 49, 0.10);
    border-left: 3px solid rgba(28, 43, 49, 0.48);

    background:
        linear-gradient(
            90deg,
            rgba(28, 43, 49, 0.075) 0%,
            rgba(255, 255, 255, 0.28) 100%
        );

    transition:
        background .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.vst-member-scenes-item:nth-child(even) {
    background:
        linear-gradient(
            90deg,
            rgba(28, 43, 49, 0.045) 0%,
            rgba(255, 255, 255, 0.38) 100%
        );
}

.vst-member-scenes-item:hover {
    border-left-color: #1c2b31;
    background:
        linear-gradient(
            90deg,
            rgba(28, 43, 49, 0.12) 0%,
            rgba(255, 255, 255, 0.42) 100%
        );
    transform: translateX(2px);
}

.vst-member-scenes-subject {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #1c2b31;
    line-height: 1.45;
    font-size: 12px;
}

.vst-member-scenes-subject a {
    color: #1c2b31;
    text-decoration: none;
}

.vst-member-scenes-subject a:hover {
    color: #000;
    text-decoration: none;
}

.vst-member-scenes-meta {
    margin-top: 6px;
    margin-left: 16px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;

    color: rgba(28, 43, 49, 0.56);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.35;
}

/* =========================
   Statusmarker
   ========================= */

.vst-member-scenes-marker {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-top: 1px;
    flex: 0 0 8px;
}

.vst-member-scenes-marker.is-open {
    background: #1c2b31;
    box-shadow: 0 0 8px rgba(28, 43, 49, 0.36);
}

.vst-member-scenes-marker.is-closed {
    background: rgba(28, 43, 49, 0.34);
}

.vst-member-scenes-empty {
    padding: 8px 2px;
    color: rgba(28, 43, 49, 0.56);
    font-size: 11px;
    letter-spacing: .06em;
    line-height: 1.5;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 700px) {
    .vst-header-global-stats {
        gap: 6px;
        max-width: calc(100% - 20px);
        padding: 8px 12px;
        flex-wrap: wrap;
    }

    .vst-header-global-stats:before,
    .vst-header-global-stats:after {
        display: none;
    }

    .vst-header-member-dropdown {
        left: auto;
        right: 0;
        min-width: 300px;
        max-width: calc(100vw - 24px);
    }
}