body {
    padding-top: 10px;
}
a.btn:hover {
    color: var(--bs-btn-hover-color, #fff) !important;
    text-decoration: none !important;
    transform: none !important;
}
.breadcrumb {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.25rem;
}

.table th {
    background: #e9ecef;
}


a {
    text-decoration: none;
    transition: all 0.2s ease;
    color: #212529; 
}

a:hover {
    color: #0d6efd !important;
    text-decoration: underline;
    transform: scale(1.02);
    display: inline-block; 
}

a:active,
a:focus {
    text-decoration: none !important;
    transform: scale(0.98);
    outline: none;
}


.table a {
    display: inline-block;
}

/* ===== 复选框选中行高亮 ===== */
tr.selected {
    background-color: #e7f1ff !important; /* 浅蓝色背景 */
    transition: background-color 0.2s;
}

tr.selected a {
    color: #0a58ca !important;
}

/* ===== 表格行悬停效果（Bootstrap .table-hover 增强） ===== */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075) !important; /* Bootstrap 默认淡灰色 */
}

/* 选中行悬停时保持浅蓝（覆盖灰色） */
.table-hover tbody tr.selected:hover {
    background-color: #e7f1ff !important;
}