/* 点击表格行样式 */
.clickable-table-row {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.clickable-table-row:hover {
    background-color: var(--mantine-color-primary-0) !important;
}

.clickable-table-row td:last-child {
    position: relative;
    z-index: 10;
}
