.yf-page-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.yf-surface {
    background: var(--yf-color-surface);
    border: 1px solid var(--yf-color-border);
    border-radius: var(--yf-radius-md);
    box-shadow: var(--yf-shadow-soft);
}

.yf-empty-state {
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 2rem;
    color: var(--yf-color-muted);
    text-align: center;
}

.yf-status-chip {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 .65rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
}

.yf-status-chip[data-tone="success"] {
    color: #117344;
    background: #e3f7ec;
}

.yf-status-chip[data-tone="warning"] {
    color: #8a5900;
    background: #fff2cc;
}

.yf-status-chip[data-tone="danger"] {
    color: #b4233c;
    background: #ffe8ec;
}

.yf-skeleton {
    min-height: 1rem;
    overflow: hidden;
    background: #edf0f4;
    border-radius: var(--yf-radius-sm);
}

.yf-touch-target {
    min-width: 44px;
    min-height: 44px;
}

@media (max-width: 575.98px) {
    .yf-page-header > * {
        width: 100%;
    }
}
