/* Shared skeleton loader used by all list pages */
.skeleton {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s ease-in-out infinite;
    border-radius: 4px;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Transaction list */
.txn-id {
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, monospace;
    font-size: 0.75rem;
    letter-spacing: -0.02em;
    color: #374151;
}
.txn-amount {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}
.txn-table tr:hover td {
    background-color: #f9fafb;
}
.txn-table tr:hover .txn-sticky {
    background-color: #f9fafb !important;
}
.txn-sticky {
    position: sticky;
    left: 0;
    box-shadow: 2px 0 5px -2px rgba(0, 0, 0, 0.08);
}
.txn-control {
    display: block;
    width: 100%;
    height: 2.375rem;
    padding: 0.4375rem 0.75rem;
    font-size: 0.875rem;
    color: #111827;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    box-sizing: border-box;
}
.txn-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.txn-control-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}
.txn-scroll-hide-bar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.txn-scroll-hide-bar::-webkit-scrollbar {
    display: none;
}
.txn-table tr.selected td {
    background-color: #eff6ff;
}
.txn-table tr.selected .txn-sticky {
    background-color: #eff6ff !important;
}

/* Card selection link list */
.csl-id {
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, monospace;
    font-size: 0.75rem;
    letter-spacing: -0.02em;
    color: #374151;
}
.csl-table tr:hover td {
    background-color: #f9fafb;
}
.csl-table tr:hover .csl-sticky {
    background-color: #f9fafb !important;
}
.csl-sticky {
    position: sticky;
    left: 0;
    box-shadow: 2px 0 5px -2px rgba(0, 0, 0, 0.08);
}
.csl-control {
    display: block;
    width: 100%;
    height: 2.375rem;
    padding: 0.4375rem 0.75rem;
    font-size: 0.875rem;
    color: #111827;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    box-sizing: border-box;
}
.csl-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.csl-control-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}
.csl-scroll-hide-bar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.csl-scroll-hide-bar::-webkit-scrollbar {
    display: none;
}
.csl-table tr.selected td {
    background-color: #eff6ff;
}
.csl-table tr.selected .csl-sticky {
    background-color: #eff6ff !important;
}
