body {
    font-family: system-ui, sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
    color: #1a1a1a;
}

#filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.field.actions {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

th, td {
    border: 1px solid #ddd;
    padding: 0.4rem 0.6rem;
    text-align: left;
    font-size: 0.9rem;
}

tbody tr {
    cursor: pointer;
}

tbody tr:hover {
    background: #f5f5f5;
}

#pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#detail {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100%);
    background: white;
    border-left: 1px solid #ddd;
    padding: 1rem;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}
