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

.controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.controls input {
    width: 7rem;
}

.status {
    margin: 0;
    color: #475569;
    font-size: 0.875rem;
}

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

.item {
    box-sizing: border-box;
    min-height: 42px;
    padding: 0.7rem;
    border-bottom: 1px solid #e2e8f0;
    background: white;
}