/* skin/css/list.css */

.pill-tabs-container {
    display: flex; gap: 10px; overflow-x: auto;
    padding: 15px; background: transparent;
}
.pill-tab {
    background: #fff; padding: 6px 18px;
    border-radius: 20px; font-size: 13px; color: var(--lab-sub);
    white-space: nowrap; border: 1px solid var(--lab-border);
    flex-shrink: 0;
}
.pill-tab.active {
    background: var(--lab-blue); color: #fff; border-color: var(--lab-blue);
    box-shadow: 0 4px 10px rgba(41, 98, 255, 0.3);
}

/* Pagination */
.tspage {
    text-align: center; padding: 20px; font-size: 12px; color: var(--lab-sub);
}
.tspage a { margin: 0 5px; color: var(--lab-text); }
.tspage b { color: var(--lab-blue); font-weight: bold; margin: 0 5px; }
.tspage i { font-style: normal; }

/* Reuse .list-vertical, .list-cell from index.css logic */
.list-vertical { display: flex; flex-direction: column; }
.list-cell {
    display: flex; align-items: center; padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}
.list-cell:last-child { border-bottom: none; }
.list-cell img { width: 50px; height: 50px; border-radius: 10px; margin-right: 15px; }
.lc-data { flex: 1; }
.lc-data h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.lc-data p { font-size: 12px; color: #999; }