/* Data display — tables, timeline, bulk bar, notifications */

.data-table { width: 100%; border-collapse: collapse; background: var(--paper-raised); border: 1px solid var(--line-subtle); border-radius: var(--radius-lg); overflow: hidden; }
.data-table th { text-align: left; font-size: 11px; color: var(--ink-500); font-weight: 700; background: var(--paper-sunken); padding: 11px 14px; border-bottom: 1px solid var(--line-subtle); }
.data-table td { padding: 12px 14px; font-size: 13px; border-bottom: 1px solid var(--line-subtle); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--paper-sunken); }
.row-user { display: flex; align-items: center; gap: 8px; }
.row-user b { font-size: 13px; display: block; }
.row-user span { font-size: 11px; color: var(--ink-500); }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline .t-item { display: flex; gap: 12px; padding-bottom: 20px; position: relative; }
.timeline .t-item:last-child { padding-bottom: 0; }
.timeline .t-item::before { content: ""; position: absolute; left: 11px; top: 26px; bottom: 0; width: 2px; background: var(--line-subtle); }
.timeline .t-item:last-child::before { display: none; }
.timeline .dot { width: 24px; height: 24px; border-radius: 50%; background: var(--paper-sunken); color: var(--ink-900); display: flex; align-items: center; justify-content: center; flex: none; z-index: 1; border: 1px solid var(--line-default); }
.timeline .dot i { font-size: 13px; }
.timeline b { font-size: 13px; display: block; }
.timeline span { font-size: 11.5px; color: var(--ink-500); }

.bulk-bar { display: flex; align-items: center; justify-content: space-between; background: var(--ink-900); color: var(--paper); padding: 10px 16px; border-radius: var(--radius-md); }
.bulk-bar .left { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
.bulk-bar .acts { display: flex; gap: 8px; }
.bulk-bar .acts button { background: rgba(250,246,238,0.14); color: var(--paper); border: none; padding: 7px 12px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.bulk-bar .acts button.danger { background: var(--paper); color: var(--ink-900); }

.notif-item { display: flex; gap: 10px; padding: 12px 14px; border-radius: var(--radius-md); }
.notif-item.unread { background: var(--paper-sunken); }
.notif-item .ic { width: 32px; height: 32px; border-radius: 50%; background: var(--paper-raised); border: 1px solid var(--line-default); display: flex; align-items: center; justify-content: center; color: var(--ink-900); flex: none; }
.notif-item p { margin: 0; font-size: 12.5px; }
.notif-item span { font-size: 11px; color: var(--ink-500); }
