/* 库房管理系统 - 自定义样式 */

/* Flash 消息间距 */
.alert {
    margin-bottom: 0.5rem;
}

/* 表格鼠标悬停效果增强 */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* 导航激活样式 */
.navbar .nav-link.active {
    font-weight: 600;
}

/* 搜索下拉结果 */
#searchResults .list-group-item:hover {
    background-color: #e7f1ff;
}

/* 卡片标题 */
.card-header h5 {
    font-size: 1rem;
    line-height: 1.5;
}

/* 统计数字卡片 */
.card h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* 低库存标记行 */
tr:has(.text-danger.fw-bold) {
    background-color: rgba(220, 53, 69, 0.03);
}

/* 按钮组间距 */
.btn + .btn {
    margin-left: 4px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .card h2 {
        font-size: 1.5rem;
    }
    .table-responsive {
        font-size: 0.875rem;
    }
    .navbar-brand {
        font-size: 1rem;
    }
}

/* 分页导航 */
.pagination {
    flex-wrap: wrap;
}

/* footer 固定 */
footer {
    margin-top: auto;
}
