.active-color {
    color: #ff6b35 !important;
}

.active-bg-color {
    background: #ff6b35 !important;
    color: #FFF ! IMPORTANT;
}

.filter-reset-btn {
    background-color: #333;
    color: #FFF;
}

.filter-reset-btn:hover {
    background-color: #333;
    color: #fff;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.page-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-dots {
    color: #666;
    padding: 0 10px;
}

.status-wait {
    color: #ff6b35;
}

.status-complete {
    color: #009933;
}

.status-shipped {
    color: #0099cc;
}

.status-close,
.status-cancel {
    color: #999;
}


/* 面包屑导航 */
.breadcrumb {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb .current {
    color: #ff6b35;
    font-weight: 500;
}