.example {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.5rem;
    box-sizing: border-box;
    height: 100%;
    padding: 0.5rem;
    font-family: system-ui, sans-serif;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.status {
    color: #475569;
}

.list {
    min-height: 0;
    border: 1px solid #cbd5e1;
}

.item {
    box-sizing: border-box;
    min-height: 48px;
    padding: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
}

.details {
    display: grid;
    place-content: center;
    gap: 1rem;
    height: 100%;
    font-family: system-ui, sans-serif;
    text-align: center;
}