/* ═══════════════════════════════════════════
   ZEITSPUREN — Stylesheet
   ═══════════════════════════════════════════ */

/* Grundcontainer */
.zt-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 16px 60px;
    font-family: inherit;
}

/* ── Header / Datum ── */
.zt-header {
    text-align: center;
    margin-bottom: 28px;
}

.zt-datum {
    font-size: 2rem;
    font-weight: 700;
    color: #185FA5;
    margin: 0 0 6px;
}

.zt-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* ── Suchfilter ── */
.zt-filter-form {
    background: #f4f7fb;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.zt-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.zt-select {
    flex: 1;
    min-width: 120px;
    padding: 9px 12px;
    border: 1px solid #c8d6e8;
    border-radius: 6px;
    background: #fff;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    appearance: auto;
}

.zt-select:focus {
    outline: none;
    border-color: #185FA5;
}

.zt-btn {
    padding: 9px 22px;
    background: #185FA5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.zt-btn:hover {
    background: #134d87;
}

/* ── Tabs ── */
.zt-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e0e8f0;
    margin-bottom: 20px;
}

.zt-tab {
    padding: 9px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: 6px 6px 0 0;
    border: 2px solid transparent;
    border-bottom: none;
    transition: color 0.2s, background 0.2s;
}

.zt-tab:hover {
    color: #185FA5;
    background: #f0f5fb;
}

.zt-tab--active {
    color: #185FA5;
    background: #fff;
    border-color: #e0e8f0;
    border-bottom-color: #fff;
    margin-bottom: -2px;
    font-weight: 700;
}

/* ── Ergebnisse ── */
.zt-count {
    font-size: 0.875rem;
    color: #888;
    margin: 0 0 12px;
}

.zt-eintrag {
    display: flex;
    gap: 14px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f5;
    line-height: 1.5;
}

.zt-eintrag:last-child {
    border-bottom: none;
}

.zt-jahr {
    flex-shrink: 0;
    min-width: 48px;
    font-weight: 700;
    color: #185FA5;
    font-size: 0.95rem;
}

.zt-text {
    color: #333;
    font-size: 0.95rem;
}

.zt-leer {
    color: #999;
    font-style: italic;
    margin-top: 20px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .zt-datum {
        font-size: 1.5rem;
    }

    .zt-filter-row {
        flex-direction: column;
    }

    .zt-select,
    .zt-btn {
        width: 100%;
    }

    .zt-tab {
        padding: 8px 12px;
        font-size: 0.875rem;
    }
}
