/* 类别管理页面样式 */

.page-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.btn-back {
    background: none;
    border: none;
    font-size: 1.2rem;
    margin-right: 10px;
    cursor: pointer;
    color: #333;
}

.category-list {
    margin-bottom: 20px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.category-item:last-child {
    border-bottom: none;
}

.category-name {
    font-size: 1rem;
}

.btn-delete {
    background: none;
    border: none;
    color: #e53935;
    cursor: pointer;
    padding: 5px;
}

.btn-delete:hover {
    color: #c62828;
}

.no-data, .loading, .error {
    padding: 20px;
    text-align: center;
    color: #666;
}

.error {
    color: #e53935;
}

.loading {
    color: #1976d2;
}